pgsql/src/backend/utils/cache (relcache.c)

From: Hiroshi Inoue <inoue>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql/src/backend/utils/cache (relcache.c)
Date: 2000-08-30 08:48:56
Message-ID: 200008300848.e7U8muf48895@hub.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Date: Wednesday, August 30, 2000 @ 04:48:56
Author: inoue

Update of /home/projects/pgsql/cvsroot/pgsql/src/backend/utils/cache
from hub.org:/tmp/cvs-serv48213/utils/cache

Modified Files:
relcache.c

----------------------------- Log Message -----------------------------

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

Browse pgsql-committers by date

  From Date Subject
Next Message Bruce Momjian - CVS 2000-08-30 14:54:23 pgsql/src/backend/postmaster (postmaster.c)
Previous Message Bruce Momjian - CVS 2000-08-29 20:02:10 pgsql/doc/src/sgml/ref (explain.sgml pgctl-ref.sgml psql-ref.sgml set.sgml)