BUG #18906: EXCEPT with identical left/right queries isn't eliminated

Поиск
Список
Период
Сортировка
От PG Bug reporting form
Тема BUG #18906: EXCEPT with identical left/right queries isn't eliminated
Дата
Msg-id 18906-30841e2ed429c5f8@postgresql.org
обсуждение исходный текст
Ответы Re: BUG #18906: EXCEPT with identical left/right queries isn't eliminated
Список pgsql-bugs
The following bug has been logged on the website:

Bug reference:      18906
Logged by:          jinhui lai
Email address:      jh.lai@qq.com
PostgreSQL version: 17.4
Operating system:   ubuntu 22.04
Description:

Dear PostgreSQL Developer:
q1 EXCEPT q1 should always return an empty set and consume minimal execution
time. It should not be executed, but the empty set is returned quickly and
directly.  However, PostgreSQL actually executed such an unnecessary query.
I think such queries should be optimized.
Best regards,
1. How to repeat?
docker pull postgres:latest
docker run --name postgres -e POSTGRES_PASSWORD=1213 -d -p 5432:5432
postgres
docker exec -it postgres psql -U postgres -c "CREATE DATABASE testdb;"
docker exec -it postgres pgbench -U postgres -i -s 10 testdb
docker exec -it  postgres psql -U postgres
psql (17.4 (Debian 17.4-1.pgdg120+2))
Type "help" for help.
\timing on
\c testdb
SELECT * FROM pgbench_accounts a CROSS JOIN pgbench_tellers WHERE a.aid
>50000
EXCEPT
SELECT * FROM pgbench_accounts a CROSS JOIN pgbench_tellers WHERE a.aid >
50000;
 aid | bid | abalance | filler | tid | bid | tbalance | filler
-----+-----+----------+--------+-----+-----+----------+--------
(0 rows)
Time: 231290.916 ms (03:51.291)
2. What do i expect to see?
SELECT * FROM pgbench_accounts a CROSS JOIN pgbench_tellers WHERE a.aid
>50000
EXCEPT
SELECT * FROM pgbench_accounts a CROSS JOIN pgbench_tellers WHERE a.aid >
50000;
 aid | bid | abalance | filler | tid | bid | tbalance | filler
-----+-----+----------+--------+-----+-----+----------+--------
(0 rows)
Time: 0.xxx ms (few time)
3. What do i  see instead?
SELECT * FROM pgbench_accounts a CROSS JOIN pgbench_tellers WHERE a.aid
>50000
EXCEPT
SELECT * FROM pgbench_accounts a CROSS JOIN pgbench_tellers WHERE a.aid >
50000;
 aid | bid | abalance | filler | tid | bid | tbalance | filler
-----+-----+----------+--------+-----+-----+----------+--------
(0 rows)
Time: 231290.916 ms (03:51.291)


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