mirror of https://github.com/citusdata/citus.git
Note that we'll drop the GUC after PG 11 support dropped
parent
c653923960
commit
81d8178625
|
@ -762,6 +762,10 @@ RegisterCitusConfigVariables(void)
|
||||||
GUC_STANDARD,
|
GUC_STANDARD,
|
||||||
NULL, NULL, NULL);
|
NULL, NULL, NULL);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* We shouldn't need this variable after we drop support to PostgreSQL 11 and
|
||||||
|
* below. So, noting it here with PG_VERSION_NUM < 120000
|
||||||
|
*/
|
||||||
DefineCustomBoolVariable(
|
DefineCustomBoolVariable(
|
||||||
"citus.enable_cte_inlining",
|
"citus.enable_cte_inlining",
|
||||||
gettext_noop("When set to false, CTE inlining feature is disabled"),
|
gettext_noop("When set to false, CTE inlining feature is disabled"),
|
||||||
|
|
Loading…
Reference in New Issue