mirror of
https://github.com/postgres/postgres.git
synced 2025-07-15 19:21:59 +03:00
Fix typo in regression test comment.
This commit is contained in:
@ -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
|
||||
|
@ -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);
|
||||
|
Reference in New Issue
Block a user