mirror of https://github.com/citusdata/citus.git
21 lines
660 B
SQL
21 lines
660 B
SQL
--
|
|
-- MULTI_MX_REPARTITION_W2_UDT
|
|
--
|
|
|
|
\c - - - :worker_2_port
|
|
SET client_min_messages = LOG;
|
|
-- Query that should result in a repartition join on UDT column.
|
|
SET citus.max_adaptive_executor_pool_size TO 1;
|
|
SET citus.enable_repartition_joins to ON;
|
|
SET citus.log_multi_join_order = true;
|
|
|
|
-- Query that should result in a repartition
|
|
-- join on int column, and be empty.
|
|
SELECT * FROM repartition_udt JOIN repartition_udt_other
|
|
ON repartition_udt.pk = repartition_udt_other.pk;
|
|
|
|
SELECT * FROM repartition_udt JOIN repartition_udt_other
|
|
ON repartition_udt.udtcol = repartition_udt_other.udtcol
|
|
WHERE repartition_udt.pk > 1
|
|
ORDER BY repartition_udt.pk;
|