Обсуждение: aggregates other than count accpet *

Поиск
Список
Период
Сортировка

aggregates other than count accpet *

От
Kris Jurka
Дата:
PostgreSQL allows aggregates other than COUNT to accept * as the arugment.
Combined with the transformation of * -> 1 you get odd results from SELECT
MIN(*), MAX(*) FROM tab; instead of an error.

Kris Jurka

Re: aggregates other than count accpet *

От
Tom Lane
Дата:
Kris Jurka <books@ejurka.com> writes:
> PostgreSQL allows aggregates other than COUNT to accept * as the arugment.

This is not a bug, it's extensibility ;-)

            regards, tom lane