From 4db9689d1a0a97b8b6060bf8bacac53a0d47825d Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sat, 26 Apr 2003 20:23:00 +0000 Subject: Add transaction status field to ReadyForQuery messages, and make room for tableID/columnID in RowDescription. (The latter isn't really implemented yet though --- the backend always sends zeroes, and libpq just throws away the data.) --- src/include/libpq/pqcomm.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/include/libpq') diff --git a/src/include/libpq/pqcomm.h b/src/include/libpq/pqcomm.h index 6a871c7c6f..d5374a68fe 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.80 2003/04/25 19:45:09 tgl Exp $ + * $Id: pqcomm.h,v 1.81 2003/04/26 20:22:59 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,104) /* XXX temporary value */ +#define PG_PROTOCOL_LATEST PG_PROTOCOL(3,105) /* XXX temporary value */ typedef uint32 ProtocolVersion; /* FE/BE protocol version number */ -- cgit v1.2.3