Fixes indentation

pull/7270/head
gindibay 2023-10-09 20:03:07 +03:00
parent fb6dd413ad
commit 7bdeb2f866
1 changed files with 3 additions and 3 deletions

View File

@ -382,7 +382,6 @@ citus_internal_database_command(PG_FUNCTION_ARGS)
{ {
createdb(NULL, (CreatedbStmt *) parseTree); createdb(NULL, (CreatedbStmt *) parseTree);
} }
} }
else if (IsA(parseTree, DropdbStmt)) else if (IsA(parseTree, DropdbStmt))
{ {
@ -403,6 +402,7 @@ citus_internal_database_command(PG_FUNCTION_ARGS)
{ {
ereport(ERROR, (errmsg("unsupported command type %d", nodeTag(parseTree)))); ereport(ERROR, (errmsg("unsupported command type %d", nodeTag(parseTree))));
} }
/* Below command rollbacks flags to the state before this session*/ /* Below command rollbacks flags to the state before this session*/
AtEOXact_GUC(true, saveNestLevel); AtEOXact_GUC(true, saveNestLevel);