Fwd: Strange behaviour of RULE (selecting last inserted ID of 'sequenced' column)

Поиск
Список
Период
Сортировка
От Nikolay Samokhvalov
Тема Fwd: Strange behaviour of RULE (selecting last inserted ID of 'sequenced' column)
Дата
Msg-id e431ff4c0608040250o4b1a91f1vec6c5080b15ec1d6@mail.gmail.com
обсуждение исходный текст
Ответы Re: Fwd: Strange behaviour of RULE (selecting last inserted ID of 'sequenced' column)  (Jim Nasby <jnasby@pervasive.com>)
Список pgsql-bugs
I still think that this is quite strange behaviour. When I write
'...SELECT NEW.id...' I don't expect that another calling of column's
default expr will take place. I just want to have access to "id"
column of just-created row.

Any thoughts?

---------- Forwarded message ----------
From: Nikolay Samokhvalov <samokhvalov@gmail.com>
Date: Jul 13, 2006 6:15 PM
Subject: Strange behaviour of RULE (selecting last inserted ID of
'sequenced' column)
To: PostgreSQL-general <pgsql-general@postgresql.org>


Is this a bug?

test=> create sequence strange_seq;
CREATE SEQUENCE
test=> create table strange(id integer not null default
nextval('strange_seq') primary key, data text);
NOTICE:  CREATE TABLE / PRIMARY KEY will create implicit index
"strange_pkey" for table "strange"
CREATE TABLE
test=> create rule strange_rule as on insert to strange do select new.id as id;
CREATE RULE
test=> insert into strange(data) values('adas');
 id
----
  2
(1 row)

test=> select * from strange;
 id | data
----+------
  1 | adas
(1 row)

test=> insert into strange(data) values('adas');
 id
----
  4
(1 row)

test=> insert into strange(data) values('adas');
 id
----
  6
(1 row)

test=> select * from strange;
 id | data
----+------
  1 | adas
  3 | adas
  5 | adas
(3 rows)


--
Best regards,
Nikolay


--
Best regards,
Nikolay

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: BUG #2554: ILIKE operator works incorrectly
Следующее
От: "Ralf S. Engelschall"
Дата:
Сообщение: Re: Patch to allow C extension modules to initialize/finish