From ca12d09b8c29aba03ef67233b0cc5344ec179069 Mon Sep 17 00:00:00 2001 From: Burak Velioglu Date: Mon, 14 Feb 2022 14:32:23 +0300 Subject: [PATCH] Citus indent --- src/backend/distributed/commands/function.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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);