SELECT updatability clause defective.

Поиск
Список
Период
Сортировка
От pgsql-bugs@postgresql.org
Тема SELECT updatability clause defective.
Дата
Msg-id 200105091622.f49GMj217496@hub.org
обсуждение исходный текст
Ответы Re: SELECT updatability clause defective.  (Peter Eisentraut <peter_e@gmx.net>)
Список pgsql-bugs
Jerome O\'Neil (joneil@combimatrix.com) reports a bug with a severity of 2
The lower the number the more severe it is.

Short Description
SELECT updatability clause defective.

Long Description
The syntax for select updatability clause is non-standard.  Postgres describes select updatability as

SELECT ...
 [FOR UDATE [OF tablename]]

While SQL-92 BNF describes it as

SELECT ...
 [FOR UPDATE [OF <column name list>]]

This breaks portability for third party tools (like BEA Weblogic JMS hint hint...)

Also, your bug tool doesn't like people with apostrophies in their name.

Sample Code
CREATE TABLE foo (column1 int4, column2 int4);
INSERT INTO foo VALUES (1,2);

-- Broken Postgres syntax
SELECT column1 FROM foo where column1 = 1 FOR UPDATE OF foo;

-- Nice and friendly SQL-92 syntax
SELECT column1 FROM foo where column1 = 1 FOR UPDATE OF column1;


No file was uploaded with this report

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Another plpgsql crash
Следующее
От: pgsql-bugs@postgresql.org
Дата:
Сообщение: Better dump of foreign key data