diff options
author | Bruce Momjian <bruce@momjian.us> | 1998-05-14 17:18:14 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1998-05-14 17:18:14 +0000 |
commit | 683333644d1ca374e208a2174910c42e19134b1e (patch) | |
tree | 401ed324a82110ae78580c5c7898e72c603309d8 /src/interfaces/libpq/fe-exec.c | |
parent | fdd9a344caf7727fee5015893461ca33985ae1cd (diff) | |
download | postgresql-683333644d1ca374e208a2174910c42e19134b1e.tar.gz postgresql-683333644d1ca374e208a2174910c42e19134b1e.zip |
Pass atttypmod to the frontend.
Diffstat (limited to 'src/interfaces/libpq/fe-exec.c')
-rw-r--r-- | src/interfaces/libpq/fe-exec.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/interfaces/libpq/fe-exec.c b/src/interfaces/libpq/fe-exec.c index ae770e197aa..c48e9aa9b15 100644 --- a/src/interfaces/libpq/fe-exec.c +++ b/src/interfaces/libpq/fe-exec.c @@ -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; |