From: Etsuro Fujita Date: Thu, 29 Aug 2019 09:45:02 +0000 (+0900) Subject: Fix typo in regression test comment. X-Git-Tag: REL_11_6~105 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8c88d21ced41b3a8b227235765065158b723e280;p=thirdparty%2Fpostgresql.git Fix typo in regression test comment. --- 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);