mirror of https://github.com/citusdata/citus.git
run all joins with repartition
parent
8a2cb07e13
commit
2333cbd908
|
@ -903,6 +903,7 @@ static JoinOrderNode *
|
|||
LocalJoin(JoinOrderNode *currentJoinNode, TableEntry *candidateTable,
|
||||
List *applicableJoinClauses, JoinType joinType)
|
||||
{
|
||||
return NULL;
|
||||
Oid relationId = candidateTable->relationId;
|
||||
uint32 tableId = candidateTable->rangeTableId;
|
||||
Var *candidatePartitionColumn = PartitionColumn(relationId, tableId);
|
||||
|
|
|
@ -456,6 +456,7 @@ if ($majorversion >= "14") {
|
|||
|
||||
# Citus options set for the tests
|
||||
push(@pgOptions, "citus.shard_count=4");
|
||||
push(@pgOptions, "citus.enable_repartition_joins = on");
|
||||
push(@pgOptions, "citus.max_adaptive_executor_pool_size=4");
|
||||
push(@pgOptions, "citus.defer_shard_delete_interval=-1");
|
||||
push(@pgOptions, "citus.repartition_join_bucket_count_per_node=2");
|
||||
|
|
Loading…
Reference in New Issue