mirror of
https://github.com/postgres/postgres.git
synced 2025-07-15 19:21:59 +03:00
Rename enable_partition_wise_join to enable_partitionwise_join
Discussion: https://www.postgresql.org/message-id/flat/ad24e4f4-6481-066e-e3fb-6ef4a3121882%402ndquadrant.com
This commit is contained in:
@ -1601,15 +1601,15 @@ build_joinrel_partition_info(RelOptInfo *joinrel, RelOptInfo *outer_rel,
|
||||
int cnt;
|
||||
PartitionScheme part_scheme;
|
||||
|
||||
/* Nothing to do if partition-wise join technique is disabled. */
|
||||
if (!enable_partition_wise_join)
|
||||
/* Nothing to do if partitionwise join technique is disabled. */
|
||||
if (!enable_partitionwise_join)
|
||||
{
|
||||
Assert(!IS_PARTITIONED_REL(joinrel));
|
||||
return;
|
||||
}
|
||||
|
||||
/*
|
||||
* We can only consider this join as an input to further partition-wise
|
||||
* We can only consider this join as an input to further partitionwise
|
||||
* joins if (a) the input relations are partitioned, (b) the partition
|
||||
* schemes match, and (c) we can identify an equi-join between the
|
||||
* partition keys. Note that if it were possible for
|
||||
|
Reference in New Issue
Block a user