diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 1999-08-31 01:37:37 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 1999-08-31 01:37:37 +0000 |
commit | ab5cafa5d3f47439d8f65516bc5b88ad04117621 (patch) | |
tree | 33724b61ca936a81b37106ffa29ba4e396a543fd /src/interfaces/libpq/fe-auth.c | |
parent | 130e372b5d55fcd8201518adc9025a5cb0f13b56 (diff) |
Update frontend libpq to remove limits on query lengths,
error/notice message lengths, and number of fields per tuple. Add
pqexpbuffer.c/.h, a frontend version of backend's stringinfo module.
This is first step in applying Mike Ansley's long-query patches,
even though he didn't do any of these particular changes...
Diffstat (limited to 'src/interfaces/libpq/fe-auth.c')
-rw-r--r-- | src/interfaces/libpq/fe-auth.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/interfaces/libpq/fe-auth.c b/src/interfaces/libpq/fe-auth.c index f72f76b4080..574d78c25d5 100644 --- a/src/interfaces/libpq/fe-auth.c +++ b/src/interfaces/libpq/fe-auth.c @@ -5,9 +5,11 @@ * * Copyright (c) 1994, Regents of the University of California * + * NOTE: the error message strings returned by this module must not + * exceed INITIAL_EXPBUFFER_SIZE (currently 256 bytes). * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-auth.c,v 1.32 1999/07/19 06:25:38 momjian Exp $ + * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-auth.c,v 1.33 1999/08/31 01:37:36 tgl Exp $ * *------------------------------------------------------------------------- */ |