diff options
author | Tom Lane | 2003-11-12 22:53:16 +0000 |
---|---|---|
committer | Tom Lane | 2003-11-12 22:53:16 +0000 |
commit | 27e8ef05350ee9e681ed5d456526ac5abf5cd889 (patch) | |
tree | 428fe39d69133912b9696675b157308102a4f466 | |
parent | 934c21344ca83ec7b29f9fb88e566384e0d32739 (diff) |
AcceptResult() was missing a case for PGRES_EMPTY_QUERY --- probably
my fault. Adding it fixes bogus message display when reading a block
comment at the end of a script file.
-rw-r--r-- | src/bin/psql/common.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bin/psql/common.c b/src/bin/psql/common.c index 6a5aa429b84..d7f81ece666 100644 --- a/src/bin/psql/common.c +++ b/src/bin/psql/common.c @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2003, PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/common.c,v 1.76 2003/10/06 01:11:12 tgl Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/common.c,v 1.77 2003/11/12 22:53:16 tgl Exp $ */ #include "postgres_fe.h" #include "common.h" @@ -332,6 +332,7 @@ AcceptResult(const PGresult *result) { case PGRES_COMMAND_OK: case PGRES_TUPLES_OK: + case PGRES_EMPTY_QUERY: case PGRES_COPY_IN: /* Fine, do nothing */ break; |