diff --git a/src/backend/distributed/commands/parameter.c b/src/backend/distributed/commands/parameter.c index 5449d4251..1d180ee08 100644 --- a/src/backend/distributed/commands/parameter.c +++ b/src/backend/distributed/commands/parameter.c @@ -51,9 +51,9 @@ PostprocessGrantParameterStmt(Node *node, const char *queryString) * First it sets the current role to the grantor of the aclItem, then it appends the grant * privilege queries for the aclItem, and finally it resets the role to the original role. * Ex: If the aclItem has the grant option for ACL_SET, it generates the following queries: - * SET ROLE ; - * GRANT SET ON TO ; - * RESET ROLE; + * SET ROLE ; + * GRANT SET ON TO ; + * RESET ROLE; */ static List * GenerateGrantOnParameterFromAclItem(char *parameterName, AclItem *aclItem) @@ -206,5 +206,4 @@ GenerateGrantStmtOnParametersFromCatalogTable(void) return commands; } - #endif /* PG_VERSION_NUM >= PG_VERSION_15 */