diff options
Diffstat (limited to 'src/bin/psql/command.c')
-rw-r--r-- | src/bin/psql/command.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c index 5c430ea5c2b..cb94ce34bbd 100644 --- a/src/bin/psql/command.c +++ b/src/bin/psql/command.c @@ -967,7 +967,7 @@ exec_command(const char *cmd, printfPQExpBuffer(&buf, "ALTER USER %s PASSWORD ", fmtId(user)); appendStringLiteralConn(&buf, encrypted_password, pset.db); - res = PSQLexec(buf.data, false); + res = PSQLexec(buf.data); termPQExpBuffer(&buf); if (!res) success = false; @@ -2181,7 +2181,7 @@ process_file(char *filename, bool single_txn, bool use_relative_path) if (single_txn) { - if ((res = PSQLexec("BEGIN", false)) == NULL) + if ((res = PSQLexec("BEGIN")) == NULL) { if (pset.on_error_stop) { @@ -2197,7 +2197,7 @@ process_file(char *filename, bool single_txn, bool use_relative_path) if (single_txn) { - if ((res = PSQLexec("COMMIT", false)) == NULL) + if ((res = PSQLexec("COMMIT")) == NULL) { if (pset.on_error_stop) { |