Fixes indentation

pull/7181/head
gindibay 2023-09-12 06:28:20 +03:00
parent 7c552bc378
commit df0f8036ef
2 changed files with 2 additions and 3 deletions

View File

@ -242,4 +242,3 @@ PreprocessAlterDatabaseSetStmt(Node *node, const char *queryString,
return NodeDDLTaskList(NON_COORDINATOR_NODES, commands);
}

View File

@ -86,7 +86,8 @@ AppendGrantOnDatabaseStmt(StringInfo buf, GrantStmt *stmt)
AppendGrantSharedSuffix(buf, stmt);
}
AppendDefElemConnLimit(StringInfo buf, DefElem *def)
AppendDefElemConnLimit(StringInfo buf, DefElem * def)
{
appendStringInfo(buf, " CONNECTION LIMIT %ld", (long int) defGetNumeric(def));
}
@ -202,4 +203,3 @@ DeparseAlterDatabaseSetStmt(Node *node)
return str.data;
}