Обсуждение: pgsql-server/src/backend/parser parse_expr.c

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

pgsql-server/src/backend/parser parse_expr.c

От
tgl@postgresql.org (Tom Lane)
Дата:
CVSROOT:    /cvsroot
Module name:    pgsql-server
Changes by:    tgl@postgresql.org    03/02/13 13:29:07

Modified files:
    src/backend/parser: parse_expr.c

Log message:
    transformExpr() was missing some cases it ought to allow; per report
    from Greg Stark.  Also, twiddle the FuncCall case to not scribble on
    the input structure, which was the proximate cause of the problem.
    Someday we ought to fix things so that transformExpr() isn't called
    on already-transformed trees ...