Fix typo in regression test comment.
authorEtsuro Fujita <efujita@postgresql.org>
Thu, 29 Aug 2019 09:45:02 +0000 (18:45 +0900)
committerEtsuro Fujita <efujita@postgresql.org>
Thu, 29 Aug 2019 09:45:02 +0000 (18:45 +0900)
src/test/regress/expected/partition_join.out
src/test/regress/sql/partition_join.sql

index 078b5fd240095c108cd40771bf992afdf67eff62..bd0c3041c9daaf320045ad85d2bc481d6e308b69 100644 (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                  
index a59ecfd10f9c7fb6fb0b453ff12d04ee3e0b3a77..5608569a70e13438a78cfa718c2145dd4dd86723 100644 (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);