diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/commands/prepare.h | 3 | ||||
-rw-r--r-- | src/include/libpq/pqcomm.h | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/include/commands/prepare.h b/src/include/commands/prepare.h index 2438077624b..5b8f32dd4ca 100644 --- a/src/include/commands/prepare.h +++ b/src/include/commands/prepare.h @@ -6,7 +6,7 @@ * * Copyright (c) 2002-2003, PostgreSQL Global Development Group * - * $Id: prepare.h,v 1.5 2003/05/06 20:26:27 tgl Exp $ + * $Id: prepare.h,v 1.6 2003/05/06 21:51:42 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -57,5 +57,6 @@ extern PreparedStatement *FetchPreparedStatement(const char *stmt_name, bool throwError); extern void DropPreparedStatement(const char *stmt_name, bool showError); extern List *FetchPreparedStatementParams(const char *stmt_name); +extern TupleDesc FetchPreparedStatementResultDesc(PreparedStatement *stmt); #endif /* PREPARE_H */ diff --git a/src/include/libpq/pqcomm.h b/src/include/libpq/pqcomm.h index b6961e824cd..998b3a391f5 100644 --- a/src/include/libpq/pqcomm.h +++ b/src/include/libpq/pqcomm.h @@ -9,7 +9,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: pqcomm.h,v 1.82 2003/05/05 00:44:56 tgl Exp $ + * $Id: pqcomm.h,v 1.83 2003/05/06 21:51:42 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -106,7 +106,7 @@ typedef union SockAddr /* The earliest and latest frontend/backend protocol version supported. */ #define PG_PROTOCOL_EARLIEST PG_PROTOCOL(1,0) -#define PG_PROTOCOL_LATEST PG_PROTOCOL(3,106) /* XXX temporary value */ +#define PG_PROTOCOL_LATEST PG_PROTOCOL(3,107) /* XXX temporary value */ typedef uint32 ProtocolVersion; /* FE/BE protocol version number */ |