Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 317b3d7

Browse files
author
Etsuro Fujita
committed
Fix typos in regression test comments.
1 parent 744c848 commit 317b3d7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/test/regress/expected/partition_join.out

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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
19591959
(16 rows)
19601960

19611961
-- partitionwise join can not be applied for a join between list and range
1962-
-- partitioned table
1962+
-- partitioned tables
19631963
EXPLAIN (COSTS OFF)
19641964
SELECT t1.a, t1.c, t2.b, t2.c FROM prt1_n t1 FULL JOIN prt1 t2 ON (t1.c = t2.c);
19651965
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);
19761976
-> Seq Scan on prt1_n_p2 t1_1
19771977
(10 rows)
19781978

1979-
-- partitionwise join can not be applied if only one of joining table has
1979+
-- partitionwise join can not be applied if only one of joining tables has
19801980
-- default partition
19811981
ALTER TABLE prt2 DETACH PARTITION prt2_p3;
19821982
ALTER TABLE prt2 ATTACH PARTITION prt2_p3 FOR VALUES FROM (500) TO (600);

src/test/regress/sql/partition_join.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -423,11 +423,11 @@ EXPLAIN (COSTS OFF)
423423
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);
424424

425425
-- partitionwise join can not be applied for a join between list and range
426-
-- partitioned table
426+
-- partitioned tables
427427
EXPLAIN (COSTS OFF)
428428
SELECT t1.a, t1.c, t2.b, t2.c FROM prt1_n t1 FULL JOIN prt1 t2 ON (t1.c = t2.c);
429429

430-
-- partitionwise join can not be applied if only one of joining table has
430+
-- partitionwise join can not be applied if only one of joining tables has
431431
-- default partition
432432
ALTER TABLE prt2 DETACH PARTITION prt2_p3;
433433
ALTER TABLE prt2 ATTACH PARTITION prt2_p3 FOR VALUES FROM (500) TO (600);

0 commit comments

Comments
 (0)