From ac29fe853b931f9554c866c623d4035ef908a00f Mon Sep 17 00:00:00 2001 From: Craig Ringer Date: Fri, 24 Apr 2015 12:38:26 +0800 Subject: [PATCH] fixup! Prevent taking the DDL lock without explicit authorization Per internal discussion, make bdr.permit_ddl_locking true by default. --- bdr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bdr.c b/bdr.c index 0390aaa091..fd9cc1aa2b 100644 --- a/bdr.c +++ b/bdr.c @@ -710,7 +710,7 @@ _PG_init(void) "DDL lock", NULL, &bdr_permit_ddl_locking, - false, PGC_USERSET, + true, PGC_USERSET, 0, NULL, NULL, NULL); -- 2.39.5