pgsql: Remove ancient kluge that kept nodeAgg.c from crashing on UPDATEs

Поиск
Список
Период
Сортировка
От tgl@postgresql.org (Tom Lane)
Тема pgsql: Remove ancient kluge that kept nodeAgg.c from crashing on UPDATEs
Дата
Msg-id 20060621183942.A412C9FA65C@postgresql.org
обсуждение исходный текст
Список pgsql-committers
Log Message:
-----------
Remove ancient kluge that kept nodeAgg.c from crashing on UPDATEs involving
aggregates.  We just disallowed that, and AFAICS there should be no other
cases where direct (non-aggregated) references to input columns are allowed
in a query with aggregation and no GROUP BY.

Modified Files:
--------------
    pgsql/src/backend/executor:
        nodeAgg.c (r1.139 -> r1.140)
        (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/executor/nodeAgg.c.diff?r1=1.139&r2=1.140)

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

Предыдущее
От: tgl@postgresql.org (Tom Lane)
Дата:
Сообщение: pgsql: Disallow aggregate functions in UPDATE commands (unless within a
Следующее
От: tgl@postgresql.org (Tom Lane)
Дата:
Сообщение: pgsql: Move setup_cancel_handler() up near start of psql main(), where