citus_docs icon indicating copy to clipboard operation
citus_docs copied to clipboard

Outer Join Reference Table with Distributed Table

Open alhassan-fadel opened this issue 7 years ago • 1 comments

Based on the documentation

Reference Tables can be used as “dimension” tables to join efficiently with large “fact” tables.

However, it turns out that we can't outer join reference table with large distributed table.

For example,I have a reference table products and a large distributed table purchases. The purchases table is distributed based on customer_id column. Is there a plan for supporting outer join query between the reference and distributed table as follows?

select * 
from products 
left join purchases on products.id = purchases.product_id 
where true

Thanks,

alhassan-fadel avatar Oct 25 '18 09:10 alhassan-fadel

Issue moved to citusdata/citus #2531 via ZenHub

homam86 avatar Dec 08 '18 14:12 homam86