]> granicus.if.org Git - postgresql/commitdiff
Pass atttypmod to the frontend.
authorBruce Momjian <bruce@momjian.us>
Thu, 14 May 1998 17:18:14 +0000 (17:18 +0000)
committerBruce Momjian <bruce@momjian.us>
Thu, 14 May 1998 17:18:14 +0000 (17:18 +0000)
src/backend/access/common/printtup.c
src/backend/tcop/dest.c
src/interfaces/libpq/fe-exec.c

index 02e60c899aee23431499a2c9a797a965ad53049b..8b27415cf68e23c62dc6b0fb49cbdb9e2200ec6a 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *       $Header: /cvsroot/pgsql/src/backend/access/common/printtup.c,v 1.27 1998/02/26 04:29:20 momjian Exp $
+ *       $Header: /cvsroot/pgsql/src/backend/access/common/printtup.c,v 1.28 1998/05/14 17:18:12 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -141,7 +141,7 @@ printatt(unsigned attributeId,
                 AttributeTupleForm attributeP,
                 char *value)
 {
-       printf("\t%2d: %s%s%s%s\t(typeid = %u, len = %d, byval = %c)\n",
+       printf("\t%2d: %s%s%s%s\t(typeid = %u, len = %d, typmod = %d, byval = %c)\n",
                   attributeId,
                   attributeP->attname.data,
                   value != NULL ? " = \"" : "",
@@ -149,6 +149,7 @@ printatt(unsigned attributeId,
                   value != NULL ? "\"" : "",
                   (unsigned int) (attributeP->atttypid),
                   attributeP->attlen,
+                  attributeP->atttypmod,
                   attributeP->attbyval ? 't' : 'f');
 }
 
index 74da434f364e178cdaebcc0a60f7b610ab96eb12..4340cac5bc1304ac70ac26e8514d77938c3e38c6 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *       $Header: /cvsroot/pgsql/src/backend/tcop/dest.c,v 1.18 1998/05/06 23:49:59 momjian Exp $
+ *       $Header: /cvsroot/pgsql/src/backend/tcop/dest.c,v 1.19 1998/05/14 17:18:13 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -288,6 +288,7 @@ BeginCommand(char *pname,
                                                                                                                 * oops.. */
                                        pq_putint((int) attrs[i]->atttypid, sizeof(attrs[i]->atttypid));
                                        pq_putint(attrs[i]->attlen, sizeof(attrs[i]->attlen));
+                                       pq_putint(attrs[i]->atttypmod, sizeof(attrs[i]->atttypmod));
                                }
                        }
                        break;
index ae770e197aa0bfea2baa1e820f33d201e28a84e5..c48e9aa9b15cd0be27751552724f4659748bc8f5 100644 (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;