Different error messages executing CREATE TABLE or ALTER TABLE to create a column "xmin"

Поиск
Список
Период
Сортировка
От Giuseppe Sucameli
Тема Different error messages executing CREATE TABLE or ALTER TABLE to create a column "xmin"
Дата
Msg-id CAA6k8-LSvJ8jGpJd2gUr6W47KkCuvy23fo3bzqCsmFP0BMoAUA@mail.gmail.com
обсуждение исходный текст
Ответы Re: Different error messages executing CREATE TABLE or ALTER TABLE to create a column "xmin"  (Marc Balmer <marc@msys.ch>)
Список pgsql-bugs
Hi all,

trying to create a table with a column xmin I get the
following error message:

test=> create table lx (xmin int);
ERROR:  column name "xmin" conflicts with a system
column name

Instead I get a different (and less understandable) error
message if I try to add a column named xmin to an
existent table:

test=> create table lx (i int);
CREATE TABLE
test=> alter table lx add xmin int;
ERROR:  column "xmin" of relation "lx" already exists.

The same problem occurs using "xmax" as column name.

I'm on Ubuntu 11.04.
Tried on both PostgreSQL 8.4.10 and 9.1.2

Regards.

--
Giuseppe Sucameli

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

Предыдущее
От: Guillaume Lelarge
Дата:
Сообщение: Re: BUG #6406: Included pgAdmin does not have .sql file extension mapped
Следующее
От: Marc Balmer
Дата:
Сообщение: Re: Different error messages executing CREATE TABLE or ALTER TABLE to create a column "xmin"