Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8356753 commit 81276fdCopy full SHA for 81276fd
src/backend/tcop/utility.c
@@ -3007,6 +3007,10 @@ GetCommandLogLevel(Node *parsetree)
3007
lev = LOGSTMT_DDL;
3008
break;
3009
3010
+ case T_AlterOperatorStmt:
3011
+ lev = LOGSTMT_DDL;
3012
+ break;
3013
+
3014
case T_AlterTableMoveAllStmt:
3015
case T_AlterTableStmt:
3016
@@ -3291,6 +3295,14 @@ GetCommandLogLevel(Node *parsetree)
3291
3295
3292
3296
3293
3297
3298
+ case T_CreateStatsStmt:
3299
3300
3301
3302
+ case T_AlterCollationStmt:
3303
3304
3305
3294
3306
/* already-planned queries */
3307
case T_PlannedStmt:
3308
{
0 commit comments