Fixes indent

create_drop_db_gh
gindibay 2023-10-09 15:57:34 +03:00
parent 45103629dc
commit 69ccf7dd97
1 changed files with 2 additions and 2 deletions

View File

@ -39,13 +39,13 @@ handleOption(StringInfo buf, DefElem *option, const struct option_format *opt_fo
else if (strcmp(opt_formats[i].type, "object_id") == 0) else if (strcmp(opt_formats[i].type, "object_id") == 0)
{ {
Oid value = defGetObjectId(option); Oid value = defGetObjectId(option);
appendStringInfo(buf, opt_formats[i].format, value ); appendStringInfo(buf, opt_formats[i].format, value);
} }
#endif #endif
else if (strcmp(opt_formats[i].type, "literal_cstr") == 0) else if (strcmp(opt_formats[i].type, "literal_cstr") == 0)
{ {
char *value = defGetString(option); char *value = defGetString(option);
appendStringInfo(buf, opt_formats[i].format, quote_literal_cstr(value) ); appendStringInfo(buf, opt_formats[i].format, quote_literal_cstr(value));
} }
else else
{ {