Skip to content

Commit

Permalink
Merge pull request #41 from CartoDB/options_case
Browse files Browse the repository at this point in the history
Quote options to preserve case
  • Loading branch information
Mario de Frutos authored Sep 29, 2016
2 parents 25e8053 + 3385836 commit df44954
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion odbc_fdw.c
Original file line number Diff line number Diff line change
Expand Up @@ -1893,7 +1893,7 @@ appendOption(StringInfo str, bool first, const char* option_name, const char* op
{
appendStringInfo(str, ",\n");
}
appendStringInfo(str, "%s ", option_name);
appendStringInfo(str, "\"%s\" ", option_name);
appendQuotedString(str, option_value);
}

Expand Down

0 comments on commit df44954

Please sign in to comment.