1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-27 23:21:58 +03:00

Pass atttypmod to the frontend.

This commit is contained in:
Bruce Momjian
1998-05-14 17:18:14 +00:00
parent fdd9a344ca
commit 683333644d
3 changed files with 8 additions and 9 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.51 1998/05/06 23:53:38 momjian Exp $
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.52 1998/05/14 17:18:14 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -492,11 +492,8 @@ getRowDescriptions(PGconn *conn)
if (pqGets(typName, MAX_MESSAGE_LEN, conn) ||
pqGetInt(&adtid, 4, conn) ||
pqGetInt(&adtsize, 2, conn)
#if 0 /* backend support not there yet */
|| pqGetInt(&adtmod, 2, conn)
#endif
)
pqGetInt(&adtsize, 2, conn) ||
pqGetInt(&adtmod, 2, conn))
{
PQclear(result);
return EOF;