diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 1999-08-09 03:13:31 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 1999-08-09 03:13:31 +0000 |
commit | 5af4b04f31a27ed60fe360e70acf67d208f883b3 (patch) | |
tree | 78d05fe02d63a0db3ce636ad13a2a655829a5372 /src/include/utils/lsyscache.h | |
parent | e9054829a2fcc6a34e12ca5be0195117602d9f13 (diff) |
Move get_attdisbursion to lsyscache. Clean up get_typdefault.
Diffstat (limited to 'src/include/utils/lsyscache.h')
-rw-r--r-- | src/include/utils/lsyscache.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/include/utils/lsyscache.h b/src/include/utils/lsyscache.h index 39cf80d9ebf..4ca8fddda10 100644 --- a/src/include/utils/lsyscache.h +++ b/src/include/utils/lsyscache.h @@ -1,12 +1,11 @@ /*------------------------------------------------------------------------- * * lsyscache.h - * - * + * Convenience routines for common queries in the system catalog cache. * * Copyright (c) 1994, Regents of the University of California * - * $Id: lsyscache.h,v 1.18 1999/07/15 23:04:23 momjian Exp $ + * $Id: lsyscache.h,v 1.19 1999/08/09 03:13:28 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -21,6 +20,8 @@ extern AttrNumber get_attnum(Oid relid, char *attname); extern Oid get_atttype(Oid relid, AttrNumber attnum); extern bool get_attisset(Oid relid, char *attname); extern int32 get_atttypmod(Oid relid, AttrNumber attnum); +extern double get_attdisbursion(Oid relid, AttrNumber attnum, + double min_estimate); extern RegProcedure get_opcode(Oid opid); extern char *get_opname(Oid opid); extern bool op_mergejoinable(Oid opid, Oid ltype, Oid rtype, @@ -38,6 +39,6 @@ extern Oid get_ruleid(char *rulename); extern Oid get_eventrelid(Oid ruleid); extern int16 get_typlen(Oid typid); extern bool get_typbyval(Oid typid); -extern struct varlena *get_typdefault(Oid typid); +extern Datum get_typdefault(Oid typid); #endif /* LSYSCACHE_H */ |