aboutsummaryrefslogtreecommitdiff
path: root/src/include/utils/lsyscache.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2002-03-07 16:35:41 +0000
committerBruce Momjian <bruce@momjian.us>2002-03-07 16:35:41 +0000
commitb976b8af803fb1b3d9ab6a5ae5e13f3a9a90da32 (patch)
treebe92fa181752e2769ea63315b21a6db472a2c3c9 /src/include/utils/lsyscache.h
parent609f71b760d64f8ff512a5caa23d4803f664bd84 (diff)
downloadpostgresql-b976b8af803fb1b3d9ab6a5ae5e13f3a9a90da32.tar.gz
postgresql-b976b8af803fb1b3d9ab6a5ae5e13f3a9a90da32.zip
Back out domain patch until it works properly.
Diffstat (limited to 'src/include/utils/lsyscache.h')
-rw-r--r--src/include/utils/lsyscache.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/utils/lsyscache.h b/src/include/utils/lsyscache.h
index 6454a56a944..957311985a4 100644
--- a/src/include/utils/lsyscache.h
+++ b/src/include/utils/lsyscache.h
@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: lsyscache.h,v 1.41 2002/03/06 20:35:02 momjian Exp $
+ * $Id: lsyscache.h,v 1.42 2002/03/07 16:35:41 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -44,7 +44,7 @@ extern int16 get_typlen(Oid typid);
extern bool get_typbyval(Oid typid);
extern void get_typlenbyval(Oid typid, int16 *typlen, bool *typbyval);
extern char get_typstorage(Oid typid);
-extern Node *get_typdefault(Oid typid, int32 atttypmod);
+extern bool get_typdefault(Oid typid, Datum *defaultValue);
extern int32 get_typavgwidth(Oid typid, int32 typmod);
extern int32 get_attavgwidth(Oid relid, AttrNumber attnum);
extern bool get_attstatsslot(HeapTuple statstuple,