diff options
author | Marc G. Fournier <scrappy@hub.org> | 1998-03-15 08:11:11 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1998-03-15 08:11:11 +0000 |
commit | e4135ad17e51fa4e5b884c76cff8608e219fa2c7 (patch) | |
tree | 72d141b1ceae52c02dbe07bc5b58815d5ab1d1a8 /src/interfaces | |
parent | e4dccfdc6e60f267c7d671163cdb3e12f3de37cb (diff) | |
download | postgresql-e4135ad17e51fa4e5b884c76cff8608e219fa2c7.tar.gz postgresql-e4135ad17e51fa4e5b884c76cff8608e219fa2c7.zip |
From: Randy Kunkee <kunkee@pluto.ops.NeoSoft.com>
The following patch is to src/interfaces/libpq of postgresql-6.3.
The purpose of the patch is to make the initialization of
const char *pgresStatus[] match the ExecStatusType enum.
Diffstat (limited to 'src/interfaces')
-rw-r--r-- | src/interfaces/libpq/fe-exec.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/interfaces/libpq/fe-exec.c b/src/interfaces/libpq/fe-exec.c index ffa15a6428c..c82d8381061 100644 --- a/src/interfaces/libpq/fe-exec.c +++ b/src/interfaces/libpq/fe-exec.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.47 1998/02/26 04:45:07 momjian Exp $ + * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.48 1998/03/15 08:11:11 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -51,6 +51,8 @@ const char *pgresStatus[] = { "PGRES_EMPTY_QUERY", "PGRES_COMMAND_OK", "PGRES_TUPLES_OK", + "PGRES_COPY_OUT", + "PGRES_COPY_IN", "PGRES_BAD_RESPONSE", "PGRES_NONFATAL_ERROR", "PGRES_FATAL_ERROR" |