diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2000-01-14 22:18:03 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2000-01-14 22:18:03 +0000 |
commit | 7c9390caa14ea2d5d99d69d2a34eee4d45d43b9c (patch) | |
tree | 7fdf1a26847ab31eee6ab32fc4d77138040971cf /src/bin/psql/command.h | |
parent | 4ceb2d0cb619bba2ecbf5d72a10c8fa7ba321366 (diff) | |
download | postgresql-7c9390caa14ea2d5d99d69d2a34eee4d45d43b9c.tar.gz postgresql-7c9390caa14ea2d5d99d69d2a34eee4d45d43b9c.zip |
Fixed psql variables vs array syntax, as well as minor psql enhancements
Diffstat (limited to 'src/bin/psql/command.h')
-rw-r--r-- | src/bin/psql/command.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/bin/psql/command.h b/src/bin/psql/command.h index 029937e3371..a8cc220e7c9 100644 --- a/src/bin/psql/command.h +++ b/src/bin/psql/command.h @@ -24,19 +24,18 @@ typedef enum _backslashResult -backslashResult HandleSlashCmds(PsqlSettings *pset, - const char *line, +backslashResult +HandleSlashCmds(const char *line, PQExpBuffer query_buf, const char **end_of_cmd); -bool process_file(const char *filename, - PsqlSettings *pset); +bool +process_file(const char *filename); - -bool do_pset(const char *param, +bool +do_pset(const char *param, const char *value, printQueryOpt * popt, bool quiet); - #endif |