pgsql: Improved version of patch to protect pg_get_expr() against

From: tgl(at)postgresql(dot)org (Tom Lane)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Improved version of patch to protect pg_get_expr() against
Date: 2010-07-30 17:57:12
Message-ID: 20100730175712.D530D7541D5@cvs.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Log Message:
-----------
Improved version of patch to protect pg_get_expr() against misuse:
look through join alias Vars to avoid breaking join queries, and
move the test to someplace where it will catch more possible ways
of calling a function. We still ought to throw away the whole thing
in favor of a data-type-based solution, but that's not feasible in
the back branches.

Completion of back-port of my patch of yesterday.

Tags:
----
REL8_2_STABLE

Modified Files:
--------------
pgsql/src/backend/parser:
parse_expr.c (r1.198.2.3 -> r1.198.2.4)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/parser/parse_expr.c?r1=1.198.2.3&r2=1.198.2.4)
parse_func.c (r1.190 -> r1.190.2.1)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/parser/parse_func.c?r1=1.190&r2=1.190.2.1)
parse_oper.c (r1.90 -> r1.90.2.1)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/parser/parse_oper.c?r1=1.90&r2=1.90.2.1)
pgsql/src/include/parser:
parse_func.h (r1.57 -> r1.57.2.1)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/parser/parse_func.h?r1=1.57&r2=1.57.2.1)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2010-07-30 17:57:18 pgsql: Improved version of patch to protect pg_get_expr() against
Previous Message Tom Lane 2010-07-30 17:57:07 pgsql: Improved version of patch to protect pg_get_expr() against