subquery results bypassed

Поиск
Список
Период
Сортировка
От pgsql-bugs@postgresql.org
Тема subquery results bypassed
Дата
Msg-id 200107310257.f6V2vKr73531@hub.org
обсуждение исходный текст
Ответы Re: subquery results bypassed  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: subquery results bypassed  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-bugs
Anthony Wood (woody+postgresqlbugs@switchonline.com.au) reports a bug with a severity of 1
The lower the number the more severe it is.

Short Description
subquery results bypassed

Long Description
The second query in the example code should return:

 a | b | c
---+---+---
(0 rows)

but actually returns

 a | b | c
---+---+---
 1 | 3 | 2
(1 row)


which is wrong, because this tuple is not in the subquery

Sample Code
CREATE TABLE "bug" ("a" TEXT, "b" TEXT, "c" TEXT);
INSERT INTO "bug" VALUES ('1','2','1');
INSERT INTO "bug" VALUES ('1','3','2');
SELECT DISTINCT ON ("a") * FROM "bug" ORDER BY "a","c";
SELECT * FROM (SELECT DISTINCT ON ("a") * FROM "bug" ORDER BY "a","c") bug WHERE "b"='3';
DROP TABLE "bug";


No file was uploaded with this report

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Postmaster will not restart
Следующее
От: Tom Lane
Дата:
Сообщение: Re: subquery results bypassed