diff options
author | Etsuro Fujita <efujita@postgresql.org> | 2019-08-29 18:45:02 +0900 |
---|---|---|
committer | Etsuro Fujita <efujita@postgresql.org> | 2019-08-29 18:45:02 +0900 |
commit | 8c88d21ced41b3a8b227235765065158b723e280 (patch) | |
tree | 87591b367784ff49e6377273113f146dde92424c /src | |
parent | 1c99acc6ebbfbd8be01b7e118b0f5d938aacf0ed (diff) | |
download | postgresql-8c88d21ced41b3a8b227235765065158b723e280.tar.gz postgresql-8c88d21ced41b3a8b227235765065158b723e280.zip |
Fix typo in regression test comment.
Diffstat (limited to 'src')
-rw-r--r-- | src/test/regress/expected/partition_join.out | 2 | ||||
-rw-r--r-- | src/test/regress/sql/partition_join.sql | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/test/regress/expected/partition_join.out b/src/test/regress/expected/partition_join.out index 078b5fd2400..bd0c3041c9d 100644 --- a/src/test/regress/expected/partition_join.out +++ b/src/test/regress/expected/partition_join.out @@ -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 diff --git a/src/test/regress/sql/partition_join.sql b/src/test/regress/sql/partition_join.sql index a59ecfd10f9..5608569a70e 100644 --- a/src/test/regress/sql/partition_join.sql +++ b/src/test/regress/sql/partition_join.sql @@ -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); |