Skip to content

Commit fcfd7d2

Browse files
committed
Log ALTER SYSTEM statements as DDL
Per discussion in bug #11350, log ALTER SYSTEM commands at the log_statement=ddl level, rather than at the log_statement=all level. Pointed out by Tomonari Katsumata. Back-patch to 9.4 where ALTER SYSTEM was introduced.
1 parent c4bee09 commit fcfd7d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/tcop/utility.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2726,7 +2726,7 @@ GetCommandLogLevel(Node *parsetree)
27262726
break;
27272727

27282728
case T_AlterSystemStmt:
2729-
lev = LOGSTMT_ALL;
2729+
lev = LOGSTMT_DDL;
27302730
break;
27312731

27322732
case T_VariableSetStmt:

0 commit comments

Comments
 (0)