diff options
author | Bruce Momjian | 2008-07-01 00:08:18 +0000 |
---|---|---|
committer | Bruce Momjian | 2008-07-01 00:08:18 +0000 |
commit | 92d1cc89738e70a01e7c095f2315e80b9c4ef900 (patch) | |
tree | 39954c857b54b62b910876dcbf4741dec08641e6 /src/bin/psql/command.h | |
parent | 6b797c852bd45a3c3ed5cd375513c542778a9e48 (diff) |
Issue psql connection warnings on connection start and via \c, per
observation by David Fetter.
Diffstat (limited to 'src/bin/psql/command.h')
-rw-r--r-- | src/bin/psql/command.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/bin/psql/command.h b/src/bin/psql/command.h index 537bbbc790a..e4e8dccb8bd 100644 --- a/src/bin/psql/command.h +++ b/src/bin/psql/command.h @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2008, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/command.h,v 1.30 2008/01/01 19:45:55 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/command.h,v 1.31 2008/07/01 00:08:18 momjian Exp $ */ #ifndef COMMAND_H #define COMMAND_H @@ -34,6 +34,8 @@ extern bool do_pset(const char *param, printQueryOpt *popt, bool quiet); +extern void connection_warnings(void); + extern void SyncVariables(void); extern void UnsyncVariables(void); |