aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2018-02-16 10:33:59 -0500
committerPeter Eisentraut <peter_e@gmx.net>2018-02-16 10:33:59 -0500
commit2fb1abaeb016aeb45b9e6d0b81b7a7e92bb251b9 (patch)
treedbaa85975553ce1c440d786a0c16bfa95c014e5e /contrib
parentf8437c819acc37b43bd2d5b19a6b7609b4ea1292 (diff)
downloadpostgresql-2fb1abaeb016aeb45b9e6d0b81b7a7e92bb251b9.tar.gz
postgresql-2fb1abaeb016aeb45b9e6d0b81b7a7e92bb251b9.zip
Rename enable_partition_wise_join to enable_partitionwise_join
Discussion: https://www.postgresql.org/message-id/flat/ad24e4f4-6481-066e-e3fb-6ef4a3121882%402ndquadrant.com
Diffstat (limited to 'contrib')
-rw-r--r--contrib/postgres_fdw/expected/postgres_fdw.out6
-rw-r--r--contrib/postgres_fdw/sql/postgres_fdw.sql6
2 files changed, 6 insertions, 6 deletions
diff --git a/contrib/postgres_fdw/expected/postgres_fdw.out b/contrib/postgres_fdw/expected/postgres_fdw.out
index 62e084fb3d8..262c635cdba 100644
--- a/contrib/postgres_fdw/expected/postgres_fdw.out
+++ b/contrib/postgres_fdw/expected/postgres_fdw.out
@@ -7682,9 +7682,9 @@ AND ftoptions @> array['fetch_size=60000'];
ROLLBACK;
-- ===================================================================
--- test partition-wise-joins
+-- test partitionwise joins
-- ===================================================================
-SET enable_partition_wise_join=on;
+SET enable_partitionwise_join=on;
CREATE TABLE fprt1 (a int, b int, c varchar) PARTITION BY RANGE(a);
CREATE TABLE fprt1_p1 (LIKE fprt1);
CREATE TABLE fprt1_p2 (LIKE fprt1);
@@ -7800,4 +7800,4 @@ SELECT t1.a,t1.b FROM fprt1 t1, LATERAL (SELECT t2.a, t2.b FROM fprt2 t2 WHERE t
400 | 400
(4 rows)
-RESET enable_partition_wise_join;
+RESET enable_partitionwise_join;
diff --git a/contrib/postgres_fdw/sql/postgres_fdw.sql b/contrib/postgres_fdw/sql/postgres_fdw.sql
index 68fdfdc7659..28635498caf 100644
--- a/contrib/postgres_fdw/sql/postgres_fdw.sql
+++ b/contrib/postgres_fdw/sql/postgres_fdw.sql
@@ -1863,9 +1863,9 @@ AND ftoptions @> array['fetch_size=60000'];
ROLLBACK;
-- ===================================================================
--- test partition-wise-joins
+-- test partitionwise joins
-- ===================================================================
-SET enable_partition_wise_join=on;
+SET enable_partitionwise_join=on;
CREATE TABLE fprt1 (a int, b int, c varchar) PARTITION BY RANGE(a);
CREATE TABLE fprt1_p1 (LIKE fprt1);
@@ -1913,4 +1913,4 @@ EXPLAIN (COSTS OFF)
SELECT t1.a,t1.b FROM fprt1 t1, LATERAL (SELECT t2.a, t2.b FROM fprt2 t2 WHERE t1.a = t2.b AND t1.b = t2.a) q WHERE t1.a%25 = 0 ORDER BY 1,2;
SELECT t1.a,t1.b FROM fprt1 t1, LATERAL (SELECT t2.a, t2.b FROM fprt2 t2 WHERE t1.a = t2.b AND t1.b = t2.a) q WHERE t1.a%25 = 0 ORDER BY 1,2;
-RESET enable_partition_wise_join;
+RESET enable_partitionwise_join;