Update src/backend/distributed/deparser/deparse_database_stmts.c

Co-authored-by: Onur Tirtir <onurcantirtir@gmail.com>
pull/7240/head
Gürkan İndibay 2023-11-13 19:00:01 +03:00 committed by GitHub
parent a956786bd8
commit 1e044a217d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -301,7 +301,7 @@ AppendDropDatabaseStmt(StringInfo buf, DropdbStmt *stmt)
foreach_ptr(option, stmt->options)
{
/*if it is the first option then append with "WITH" else append with "," */
/* if it is the first option then append with "WITH" else append with "," */
if (option == linitial(stmt->options))
{
appendStringInfo(buf, " WITH ( ");