1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-31 22:04:40 +03:00

I think we're done with protocol instability, so mark server and libpq

as speaking the one true 3.0 protocol.
This commit is contained in:
Tom Lane
2003-05-08 18:33:39 +00:00
parent c0a8c3ac13
commit 075a0078df
3 changed files with 5 additions and 15 deletions

View File

@ -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.84 2003/05/08 18:16:37 tgl Exp $
* $Id: pqcomm.h,v 1.85 2003/05/08 18:33:32 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,108) /* XXX temporary value */
#define PG_PROTOCOL_LATEST PG_PROTOCOL(3,0)
typedef uint32 ProtocolVersion; /* FE/BE protocol version number */