Fixes indentation

pull/7563/head
gurkanindibay 2024-03-30 12:36:26 +03:00
parent 0299897395
commit 179f2e5fad
1 changed files with 4 additions and 2 deletions

View File

@ -694,10 +694,11 @@ PreprocessDropDatabaseStmt(Node *node, const char *queryString,
return dropDatabaseDDLJobList; return dropDatabaseDDLJobList;
} }
List * List *
PreprocessAlterDatabaseOwnerStmt(Node *node, const char *queryString, PreprocessAlterDatabaseOwnerStmt(Node *node, const char *queryString,
ProcessUtilityContext processUtilityContext){ ProcessUtilityContext processUtilityContext)
{
const DistributeObjectOps *ops = GetDistributeObjectOps(node); const DistributeObjectOps *ops = GetDistributeObjectOps(node);
Assert(ops != NULL); Assert(ops != NULL);
@ -708,6 +709,7 @@ PreprocessAlterDatabaseOwnerStmt(Node *node, const char *queryString,
} }
List *addresses = GetObjectAddressListFromParseTree(node, false, false); List *addresses = GetObjectAddressListFromParseTree(node, false, false);
/* the code-path only supports a single object */ /* the code-path only supports a single object */
Assert(list_length(addresses) == 1); Assert(list_length(addresses) == 1);