10000 Rename aqo.details to aqo.show_details. · postgrespro/aqo@9942179 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9942179

Browse files
committed
Rename aqo.details to aqo.show_details.
1 parent b71d9d9 commit 9942179

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

aqo.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ _PG_init(void)
135135
);
136136

137137
DefineCustomBoolVariable(
138-
"aqo.details",
138+
"aqo.show_details",
139139
"Show AQO state on a query.",
140140
NULL,
141141
&aqo_details,

expected/aqo_fdw.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
CREATE EXTENSION aqo;
77
CREATE EXTENSION postgres_fdw;
88
SET aqo.mode = 'learn';
9-
SET aqo.details = 'true'; -- show AQO info for each node and entire query.
9+
SET aqo.show_details = 'true'; -- show AQO info for each node and entire query.
1010
SET aqo.show_hash = 'false'; -- a hash value is system-depended. Ignore it.
1111
DO $d$
1212
BEGIN

sql/aqo_fdw.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
CREATE EXTENSION aqo;
88
CREATE EXTENSION postgres_fdw;
99
SET aqo.mode = 'learn';
10-
SET aqo.details = 'true'; -- show AQO info for each node and entire query.
10+
SET aqo.show_details = 'true'; -- show AQO info for each node and entire query.
1111
SET aqo.show_hash = 'false'; -- a hash value is system-depended. Ignore it.
1212

1313
DO $d$

0 commit comments

Comments
 (0)
0