diff --git a/src/backend/distributed/deparser/citus_deparseutils.c b/src/backend/distributed/deparser/citus_deparseutils.c index d7554aa79..692d10e1c 100644 --- a/src/backend/distributed/deparser/citus_deparseutils.c +++ b/src/backend/distributed/deparser/citus_deparseutils.c @@ -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) { Oid value = defGetObjectId(option); - appendStringInfo(buf, opt_formats[i].format, value ); + appendStringInfo(buf, opt_formats[i].format, value); } #endif else if (strcmp(opt_formats[i].type, "literal_cstr") == 0) { 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 {