mirror of
https://github.com/postgres/postgres.git
synced 2025-11-03 09:13:20 +03:00
Drop server support for FE/BE protocol version 1.0.
While this isn't a lot of code, it's been essentially untestable for a very long time, because libpq doesn't support anything older than protocol 2.0, and has not since release 6.3. There's no reason to believe any other client-side code still uses that protocol, either. Discussion: <2661.1475849167@sss.pgh.pa.us>
This commit is contained in:
@@ -107,7 +107,7 @@ typedef struct
|
||||
|
||||
/* The earliest and latest frontend/backend protocol version supported. */
|
||||
|
||||
#define PG_PROTOCOL_EARLIEST PG_PROTOCOL(1,0)
|
||||
#define PG_PROTOCOL_EARLIEST PG_PROTOCOL(2,0)
|
||||
#define PG_PROTOCOL_LATEST PG_PROTOCOL(3,0)
|
||||
|
||||
typedef uint32 ProtocolVersion; /* FE/BE protocol version number */
|
||||
|
||||
Reference in New Issue
Block a user