diff options
author | Fujii Masao <fujii@postgresql.org> | 2014-10-23 22:33:56 +0900 |
---|---|---|
committer | Fujii Masao <fujii@postgresql.org> | 2014-10-23 22:33:56 +0900 |
commit | efbbbbc8b51bacd32e96c3f747dd6aa4c0e444cb (patch) | |
tree | 8c5746809cd085c7c82a33e2488103aab860e96d /src/bin/psql/common.h | |
parent | 5ac372fc1a7cc673cc7d4cf26ba651d52495b27a (diff) | |
download | postgresql-efbbbbc8b51bacd32e96c3f747dd6aa4c0e444cb.tar.gz postgresql-efbbbbc8b51bacd32e96c3f747dd6aa4c0e444cb.zip |
Remove the unused argument of PSQLexec().
This commit simply removes the second argument of PSQLexec that was
set to the same value everywhere. Comments and code blocks related
to this parameter are removed.
Noticed by Heikki Linnakangas, reviewed by Michael Paquier
Diffstat (limited to 'src/bin/psql/common.h')
-rw-r--r-- | src/bin/psql/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/common.h b/src/bin/psql/common.h index 108cab967be..2001d31d275 100644 --- a/src/bin/psql/common.h +++ b/src/bin/psql/common.h @@ -38,7 +38,7 @@ extern void setup_cancel_handler(void); extern void SetCancelConn(void); extern void ResetCancelConn(void); -extern PGresult *PSQLexec(const char *query, bool start_xact); +extern PGresult *PSQLexec(const char *query); extern int PSQLexecWatch(const char *query, const printQueryOpt *opt); extern bool SendQuery(const char *query); |