mirror of https://github.com/citusdata/citus.git
fix: wrong GUC context for skip_advisory_lock_permission_checks
According to the desired sementic, PGC_SUSET should be used for citus.skip_advisory_lock_permission_checks instead of GUC_SUPERUSER_ONLY flag.pull/7617/head
parent
2874d7af46
commit
3cff7c6ac4
|
@ -2401,7 +2401,7 @@ RegisterCitusConfigVariables(void)
|
||||||
NULL,
|
NULL,
|
||||||
&SkipAdvisoryLockPermissionChecks,
|
&SkipAdvisoryLockPermissionChecks,
|
||||||
false,
|
false,
|
||||||
GUC_SUPERUSER_ONLY,
|
PGC_SUSET,
|
||||||
GUC_NO_SHOW_ALL | GUC_NOT_IN_SAMPLE,
|
GUC_NO_SHOW_ALL | GUC_NOT_IN_SAMPLE,
|
||||||
NULL, NULL, NULL);
|
NULL, NULL, NULL);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue