diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-03-22 02:56:37 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-03-22 02:56:37 +0000 |
| commit | 108a0ec87d41393c362c5b8d8aa17d9a734e4f1a (patch) | |
| tree | f437cf9d8bb1db8fdacf1c1022eac0f11e146069 /src/include/utils/lsyscache.h | |
| parent | 56c9b73c1d426c79a604df6d6f36293dd9f18754 (diff) | |
| download | postgresql-108a0ec87d41393c362c5b8d8aa17d9a734e4f1a.tar.gz | |
A little further progress on schemas: push down RangeVars into
addRangeTableEntry calls. Remove relname field from RTEs, since
it will no longer be a useful unique identifier of relations;
we want to encourage people to rely on the relation OID instead.
Further work on dumping qual expressions in EXPLAIN, too.
Diffstat (limited to 'src/include/utils/lsyscache.h')
| -rw-r--r-- | src/include/utils/lsyscache.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/utils/lsyscache.h b/src/include/utils/lsyscache.h index fbdb5f6634..89dda37bf7 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.44 2002/03/20 19:45:09 tgl Exp $ + * $Id: lsyscache.h,v 1.45 2002/03/22 02:56:37 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -40,6 +40,7 @@ extern RegProcedure get_oprjoin(Oid opno); extern Oid get_func_rettype(Oid funcid); extern bool func_iscachable(Oid funcid); extern char *get_rel_name(Oid relid); +extern Oid get_rel_type_id(Oid relid); extern int16 get_typlen(Oid typid); extern bool get_typbyval(Oid typid); extern void get_typlenbyval(Oid typid, int16 *typlen, bool *typbyval); |
