]> granicus.if.org Git - postgresql/commitdiff
Fix typos in regression test comments.
authorEtsuro Fujita <efujita@postgresql.org>
Thu, 29 Aug 2019 09:45:00 +0000 (18:45 +0900)
committerEtsuro Fujita <efujita@postgresql.org>
Thu, 29 Aug 2019 09:45:00 +0000 (18:45 +0900)
src/test/regress/expected/partition_join.out
src/test/regress/sql/partition_join.sql

index 1296edcdae505aabaac749ed4294b27509f2838f..cad8dd591aa6b2d3b5c50ee49ef2a51d7d0b3849 100644 (file)
@@ -1959,7 +1959,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                  
@@ -1976,7 +1976,7 @@ SELECT t1.a, t1.c, t2.b, t2.c FROM prt1_n t1 FULL JOIN prt1 t2 ON (t1.c = t2.c);
                ->  Seq Scan on prt1_n_p2 t1_1
 (10 rows)
 
--- partitionwise join can not be applied if only one of joining table has
+-- partitionwise join can not be applied if only one of joining tables has
 -- default partition
 ALTER TABLE prt2 DETACH PARTITION prt2_p3;
 ALTER TABLE prt2 ATTACH PARTITION prt2_p3 FOR VALUES FROM (500) TO (600);
index db9a6b4a96270fb31b1f609d5dfde495f8f533cd..fb3ba18a26ff617cd13443c5073e429f1307ee76 100644 (file)
@@ -423,11 +423,11 @@ 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);
 
--- partitionwise join can not be applied if only one of joining table has
+-- partitionwise join can not be applied if only one of joining tables has
 -- default partition
 ALTER TABLE prt2 DETACH PARTITION prt2_p3;
 ALTER TABLE prt2 ATTACH PARTITION prt2_p3 FOR VALUES FROM (500) TO (600);