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

Поиск
Список
Период
Сортировка
От Hiroshi Inoue
Тема pgsql/src/backend/utils/cache (relcache.c)
Дата
Msg-id 200008300848.e7U8muf48895@hub.org
обсуждение исходный текст
Список 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


В списке pgsql-committers по дате отправления:

Предыдущее
От: Bruce Momjian - CVS
Дата:
Сообщение: pgsql/doc/src/sgml (datatype.sgml history.sgml indexcost.sgml installation.sgml jdbc.sgml libpq.sgml manage-ag.sgml odbc.sgml plan.sgml problems.sgml protocol.sgml release.sgml runtime.sgml)
Следующее
От: Bruce Momjian - CVS
Дата:
Сообщение: pgsql/src/interfaces/libpq (fe-connect.c libpq-fe.h libpq-int.h)