Fixes comments

pull/7253/head
gurkanindibay 2023-12-17 10:38:29 +03:00
parent ea7c5f2b01
commit 775c78c179
2 changed files with 2 additions and 2 deletions

View File

@ -193,7 +193,7 @@ PreprocessGrantOnDatabaseStmt(Node *node, const char *queryString,
/*
* Checks if the provided ALTER DATABASE statement is a SET TABLESPACE statement.
* IsSetTablespaceStatement checks if the provided ALTER DATABASE statement is a SET TABLESPACE statement.
*
* This function takes a Node pointer representing a AlterDatabaseStmt, and checks
* if it is a SET TABLESPACE statement, which is used to move a table to a new

View File

@ -159,7 +159,7 @@ AppendAlterDatabaseSetTablespace(StringInfo buf, DefElem *def, char *dbname)
/*
* Appends basic ALTER DATABASE options to a string buffer.
* AppendBasicAlterDatabaseOptions appends basic ALTER DATABASE options to a string buffer.
* Basic options are those that can be appended to the ALTER DATABASE statement
* after the "WITH" keyword.(i.e. ALLOW_CONNECTIONS, CONNECTION LIMIT, IS_TEMPLATE)
* The tablespace option is not a basic option since it is defined with SET option.