Skip to content

Commit 6ecd6d3

Browse files
committed
Rename aqo.details to aqo.show_details.
1 parent f5a405f commit 6ecd6d3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

aqo.c

+1-1
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

+1-1
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

+1-1
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)