1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-02 11:44:50 +03:00

Fix re-parameterize of MergeAppendPath

Instead of MergeAppendPath, MergeAppend nodes were considered.  This
code is not covered by any tests now, which should be addressed at some
point.

This is an oversight from f49842d, which introduced partition-wise joins
in v11, so back-patch down to that.

Author: Michael Paquier
Reviewed-by: Ashutosh Bapat
Discussion: https://postgr.es/m/20180718062202.GC8565@paquier.xyz
This commit is contained in:
Michael Paquier 2018-07-19 09:01:57 +09:00
parent a360f952ff
commit c6598b8b05

View File

@ -3817,7 +3817,7 @@ do { \
} }
break; break;
case T_MergeAppend: case T_MergeAppendPath:
{ {
MergeAppendPath *mapath; MergeAppendPath *mapath;