postgresql/src/backend/utils/cache
Hiroshi Inoue 3498ea8308 Improve the following.
=# create table t (id int4 unique);
NOTICE:  CREATE TABLE/UNIQUE will create implicit index 't_id_key' for table 't'
 =# begin;
 query: drop table t;
NOTICE:  Caution: DROP TABLE cannot be rolled back, so don't abort now
NOTICE:  Caution: DROP INDEX cannot be rolled back, so don't abort now
 =# rollback;
 =# drop table t;
NOTICE:  mdopen: couldn't open t: No such file or directory
NOTICE:  RelationIdBuildRelation: smgropen(t): No such file or directory
NOTICE:  mdopen: couldn't open t: No such file or directory
NOTICE:  mdopen: couldn't open t: No such file or directory
NOTICE:  mdopen: couldn't open t_id_key: No such file or directory
NOTICE:  RelationIdBuildRelation: smgropen(t_id_key): No such file or directory
NOTICE:  mdopen: couldn't open t: No such file or directory
NOTICE:  RelationIdBuildRelation: smgropen(t): No such file or directory
NOTICE:  mdopen: couldn't open t: No such file or directory
ERROR:  cannot open relation t
2000-08-30 08:48:55 +00:00
..
catcache.c Ensure that catcache 'busy' flags are reset at transaction abort. 2000-08-06 04:17:47 +00:00
fcache.c SQL-language functions are now callable in ordinary fmgr contexts ... 2000-08-24 03:29:15 +00:00
inval.c Mark ImmediateSharedRelationCacheInvalidate as NOT_USED. 2000-06-08 19:51:06 +00:00
lsyscache.c Clean up handling of variable-free qual clauses. System now does the 2000-08-13 02:50:35 +00:00
Makefile Generated header files parse.h and fmgroids.h are now copied into 2000-05-29 05:45:56 +00:00
rel.c Fix problems seen in parallel regress tests when SI buffer overruns (causing 2000-01-31 04:35:57 +00:00
relcache.c Improve the following. 2000-08-30 08:48:55 +00:00
syscache.c Fix handling of type tuple associated with a temp relation. We have 2000-06-20 01:41:22 +00:00
temprel.c Can you please apply the following patch to current CVS 2000-07-12 18:04:47 +00:00