Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Suppress unused-variable warning.
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 10 Apr 2020 16:00:28 +0000 (12:00 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 10 Apr 2020 16:00:28 +0000 (12:00 -0400)
Ashutosh Bapat

Discussion: https://postgr.es/m/CAG-ACPWPB8Lc_aFj25eiPFqi31YB5vmaZnb39mbHSf5Yej=miA@mail.gmail.com

src/backend/partitioning/partbounds.c

index 7607501fe7f132a16c6d220a0b820096a1eb2158..4681441dcc9ac57942fe2df2919268666b7e389c 100644 (file)
@@ -1021,7 +1021,6 @@ partition_bounds_merge(int partnatts,
                       List **outer_parts, List **inner_parts)
 {
    PartitionBoundInfo outer_binfo = outer_rel->boundinfo;
-   PartitionBoundInfo inner_binfo = inner_rel->boundinfo;
 
    /*
     * Currently, this function is called only from try_partitionwise_join(),
@@ -1032,7 +1031,7 @@ partition_bounds_merge(int partnatts,
           jointype == JOIN_ANTI);
 
    /* The partitioning strategies should be the same. */
-   Assert(outer_binfo->strategy == inner_binfo->strategy);
+   Assert(outer_binfo->strategy == inner_rel->boundinfo->strategy);
 
    *outer_parts = *inner_parts = NIL;
    switch (outer_binfo->strategy)