diff options
Diffstat (limited to 'src/interfaces/libpq/libpq-int.h')
-rw-r--r-- | src/interfaces/libpq/libpq-int.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/interfaces/libpq/libpq-int.h b/src/interfaces/libpq/libpq-int.h index bb6f193bfe8..16555d98852 100644 --- a/src/interfaces/libpq/libpq-int.h +++ b/src/interfaces/libpq/libpq-int.h @@ -12,7 +12,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: libpq-int.h,v 1.18 2000/01/26 05:58:46 momjian Exp $ + * $Id: libpq-int.h,v 1.19 2000/02/07 23:10:11 petere Exp $ * *------------------------------------------------------------------------- */ @@ -244,6 +244,11 @@ struct pg_conn int client_encoding; /* encoding id */ }; +/* String descriptions of the ExecStatusTypes. + * direct use of this array is deprecated; call PQresStatus() instead. + */ +extern char *const pgresStatus[]; + /* ---------------- * Internal functions of libpq * Functions declared here need to be visible across files of libpq, |