From 0edf9ce4cba3cecfbd10c83b7c9303e9ba9a01e7 Mon Sep 17 00:00:00 2001 From: gindibay Date: Tue, 12 Sep 2023 06:37:36 +0300 Subject: [PATCH] Fixes indentation --- src/backend/distributed/deparser/deparse_database_stmts.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/backend/distributed/deparser/deparse_database_stmts.c b/src/backend/distributed/deparser/deparse_database_stmts.c index 568558dc9..7bb6ec141 100644 --- a/src/backend/distributed/deparser/deparse_database_stmts.c +++ b/src/backend/distributed/deparser/deparse_database_stmts.c @@ -28,7 +28,7 @@ static void AppendAlterDatabaseOwnerStmt(StringInfo buf, AlterOwnerStmt *stmt); static void AppendAlterDatabaseStmt(StringInfo buf, AlterDatabaseStmt *stmt); -static void AppendDefElemConnLimit(StringInfo buf, DefElem * def); +static void AppendDefElemConnLimit(StringInfo buf, DefElem *def); char * DeparseAlterDatabaseOwnerStmt(Node *node) @@ -87,8 +87,9 @@ AppendGrantOnDatabaseStmt(StringInfo buf, GrantStmt *stmt) AppendGrantSharedSuffix(buf, stmt); } + static void -AppendDefElemConnLimit(StringInfo buf, DefElem * def) +AppendDefElemConnLimit(StringInfo buf, DefElem *def) { appendStringInfo(buf, " CONNECTION LIMIT %ld", (long int) defGetNumeric(def)); }