summaryrefslogtreecommitdiff
path: root/src/include/access/tupdesc.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1998-07-12 21:29:40 +0000
committerBruce Momjian <bruce@momjian.us>1998-07-12 21:29:40 +0000
commit683f399391cf3f553653c43cb324e44e8c85a4ad (patch)
tree905d2c8073c79bde1248a44044d28ef40774f2f3 /src/include/access/tupdesc.h
parent647bbfb08604c9805f94cc6337e660ce8b450d82 (diff)
downloadpostgresql-683f399391cf3f553653c43cb324e44e8c85a4ad.tar.gz
Change atttypmod from int16 to int32, for Thomas.
Diffstat (limited to 'src/include/access/tupdesc.h')
-rw-r--r--src/include/access/tupdesc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/access/tupdesc.h b/src/include/access/tupdesc.h
index 276a83b86b..add88f5e77 100644
--- a/src/include/access/tupdesc.h
+++ b/src/include/access/tupdesc.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: tupdesc.h,v 1.16 1998/02/26 04:40:31 momjian Exp $
+ * $Id: tupdesc.h,v 1.17 1998/07/12 21:29:26 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -70,7 +70,7 @@ TupleDescInitEntry(TupleDesc desc,
AttrNumber attributeNumber,
char *attributeName,
Oid typeid,
- int16 typmod,
+ int32 typmod,
int attdim,
bool attisset);