Re: BUG #18206: Strange performance behaviour depending on location of field in query.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: BUG #18206: Strange performance behaviour depending on location of field in query.
Дата
Msg-id 1115210.1700413122@sss.pgh.pa.us
обсуждение исходный текст
Ответ на BUG #18206: Strange performance behaviour depending on location of field in query.  (PG Bug reporting form <noreply@postgresql.org>)
Ответы AW: BUG #18206: Strange performance behaviour depending on location of field in query.  (Daniel Migowski <dmigowski@ikoffice.de>)
Список pgsql-bugs
PG Bug reporting form <noreply@postgresql.org> writes:
> I have a table with some columns id and a to z and these two queries have
> drastically different runtimes.

>   select count(id) FROM testtable t WHERE t.z IS NULL;  (35% slower than
> WHERE t.a IS NULL)
>   select count(id) FROM testtable t WHERE t.a IS NULL;

> This just screems like somewhere PostgreSQL is iterating over fields over
> and over again without assigning field indexes to the literals. 

This is entirely unsurprising.  There's no cheap way to extract values
from a row that contains nulls: the offset of the field you want can't
be determined without iterating over all the fields before it, since
some of them might not be there.

One could imagine ways to optimize queries of this exact form: if
the WHERE clause is "WHERE t.z IS [NOT] NULL" and nothing else,
in principle it could be checked by examining z's bit in the nulls
bitmap, without really extracting any field values.  But that'd
require adding some remarkably ugly warts to the clause evaluation
mechanism, and I doubt it would be worth the trouble.

            regards, tom lane



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

Предыдущее
От: PG Bug reporting form
Дата:
Сообщение: BUG #18206: Strange performance behaviour depending on location of field in query.
Следующее
От: Daniel Migowski
Дата:
Сообщение: AW: BUG #18206: Strange performance behaviour depending on location of field in query.