diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/psql/copy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/copy.c b/src/bin/psql/copy.c index c1e7cfeb8af..13123d600db 100644 --- a/src/bin/psql/copy.c +++ b/src/bin/psql/copy.c @@ -196,7 +196,7 @@ parse_slash_copy(const char *args) goto error; /* { 'filename' | PROGRAM 'command' | STDIN | STDOUT | PSTDIN | PSTDOUT } */ - token = strtokx(NULL, whitespace, NULL, "'", + token = strtokx(NULL, whitespace, ";", "'", 0, false, false, pset.encoding); if (!token) goto error; @@ -205,7 +205,7 @@ parse_slash_copy(const char *args) { int toklen; - token = strtokx(NULL, whitespace, NULL, "'", + token = strtokx(NULL, whitespace, ";", "'", 0, false, false, pset.encoding); if (!token) goto error; |