mirror of
https://github.com/mdbtools/mdbtools.git
synced 2025-04-05 20:31:00 +08:00
Default to single quotes when exporting to Postgres
See: brianb/mdbtools#119 brianb/mdbtools#128
This commit is contained in:
parent
aecee0e594
commit
cac3f7aca5
@ -138,7 +138,9 @@ main(int argc, char **argv)
|
||||
/* Process options */
|
||||
if (quote_char)
|
||||
quote_char = escapes(quote_char);
|
||||
else
|
||||
else if (insert_dialect && !strcmp(insert_dialect, "postgres"))
|
||||
quote_char = g_strdup("'");
|
||||
else
|
||||
quote_char = g_strdup("\"");
|
||||
|
||||
if (delimiter)
|
||||
|
Loading…
Reference in New Issue
Block a user