1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-18 17:41:14 +03:00

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.
This commit is contained in:
Tom Lane 2003-11-12 22:55:42 +00:00
parent 5f803ae27c
commit e2e8591f54

View File

@ -3,7 +3,7 @@
* *
* Copyright (c) 2000-2003, PostgreSQL Global Development Group * 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.76.2.1 2003/11/12 22:55:42 tgl Exp $
*/ */
#include "postgres_fe.h" #include "postgres_fe.h"
#include "common.h" #include "common.h"
@ -332,6 +332,7 @@ AcceptResult(const PGresult *result)
{ {
case PGRES_COMMAND_OK: case PGRES_COMMAND_OK:
case PGRES_TUPLES_OK: case PGRES_TUPLES_OK:
case PGRES_EMPTY_QUERY:
case PGRES_COPY_IN: case PGRES_COPY_IN:
/* Fine, do nothing */ /* Fine, do nothing */
break; break;