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:
@ -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;
|
||||
|
Reference in New Issue
Block a user