mirror of https://github.com/citusdata/citus.git
Fixes indent
parent
45103629dc
commit
69ccf7dd97
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue