Fix typo in regression test comment.

This commit is contained in:
Etsuro Fujita 2019-08-29 18:45:02 +09:00
parent 1c99acc6eb
commit 8c88d21ced
2 changed files with 2 additions and 2 deletions

View File

@ -1897,7 +1897,7 @@ SELECT t1.a, t1.c, t2.b, t2.c FROM prt1_n t1 JOIN prt2_n t2 ON (t1.c = t2.c) JOI
(16 rows)
-- partitionwise join can not be applied for a join between list and range
-- partitioned table
-- partitioned tables
EXPLAIN (COSTS OFF)
SELECT t1.a, t1.c, t2.b, t2.c FROM prt1_n t1 FULL JOIN prt1 t2 ON (t1.c = t2.c);
QUERY PLAN

View File

@ -402,6 +402,6 @@ EXPLAIN (COSTS OFF)
SELECT t1.a, t1.c, t2.b, t2.c FROM prt1_n t1 JOIN prt2_n t2 ON (t1.c = t2.c) JOIN plt1 t3 ON (t1.c = t3.c);
-- partitionwise join can not be applied for a join between list and range
-- partitioned table
-- partitioned tables
EXPLAIN (COSTS OFF)
SELECT t1.a, t1.c, t2.b, t2.c FROM prt1_n t1 FULL JOIN prt1 t2 ON (t1.c = t2.c);