diff --git a/src/backend/distributed/commands/function.c b/src/backend/distributed/commands/function.c index 165db9f40..9bd5b947d 100644 --- a/src/backend/distributed/commands/function.c +++ b/src/backend/distributed/commands/function.c @@ -1348,7 +1348,8 @@ PostprocessCreateFunctionStmt(Node *node, const char *queryString) EnsureDependenciesExistOnAllNodes(&functionAddress); List *commands = list_make1(DISABLE_DDL_PROPAGATION); - commands = list_concat(commands, CreateFunctionDDLCommandsIdempotent(&functionAddress)); + commands = list_concat(commands, CreateFunctionDDLCommandsIdempotent( + &functionAddress)); commands = list_concat(commands, list_make1(ENABLE_DDL_PROPAGATION)); return NodeDDLTaskList(NON_COORDINATOR_NODES, commands);