diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-11-22 17:56:41 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-11-22 17:56:41 +0000 |
commit | fc955b14ea667e04475e2b7339c8445611470771 (patch) | |
tree | 5f5a3760e1e5cdfe910125817d9217b837eab23b /src/backend/parser/parse_coerce.c | |
parent | e30c2d67ef1c58d148bdc1b3a7faeed7b17d8b28 (diff) | |
download | postgresql-fc955b14ea667e04475e2b7339c8445611470771.tar.gz postgresql-fc955b14ea667e04475e2b7339c8445611470771.zip |
Add system indexes to match all caches.
Make all system indexes unique.
Make all cache loads use system indexes.
Rename *rel to *relid in inheritance tables.
Rename cache names to be clearer.
Diffstat (limited to 'src/backend/parser/parse_coerce.c')
-rw-r--r-- | src/backend/parser/parse_coerce.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/parser/parse_coerce.c b/src/backend/parser/parse_coerce.c index 127e493db14..0d51f2ae056 100644 --- a/src/backend/parser/parse_coerce.c +++ b/src/backend/parser/parse_coerce.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/parser/parse_coerce.c,v 2.24 1999/10/02 23:29:12 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/parse_coerce.c,v 2.25 1999/11/22 17:56:20 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -175,7 +175,7 @@ can_coerce_type(int nargs, Oid *input_typeids, Oid *func_typeids) * look for a single-argument function named with the * target type name */ - ftup = SearchSysCacheTuple(PRONAME, + ftup = SearchSysCacheTuple(PROCNAME, PointerGetDatum(typeidTypeName(func_typeids[i])), Int32GetDatum(1), PointerGetDatum(oid_array), |