diff --git a/src/backend/distributed/deparser/deparse_database_stmts.c b/src/backend/distributed/deparser/deparse_database_stmts.c index 5e7fa5416..5878d7ea8 100644 --- a/src/backend/distributed/deparser/deparse_database_stmts.c +++ b/src/backend/distributed/deparser/deparse_database_stmts.c @@ -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 ( ");