Thread: pgsql: Issue explicit error messages for attempts to use "shell"

pgsql: Issue explicit error messages for attempts to use "shell"

From
tgl@postgresql.org (Tom Lane)
Date:
Log Message:
-----------
Issue explicit error messages for attempts to use "shell" operators in
ordinary expressions.  This probably doesn't catch every single case
where you might get "cache lookup failed for function 0" for use of a
shell operator, but it will catch most.  Per bug #4120 from Pedro Gimeno.

This patch incidentally folds make_op_expr() into its sole remaining
caller --- the alternative was to give it yet more arguments, which
didn't seem an improvement.

Modified Files:
--------------
    pgsql/src/backend/parser:
        parse_oper.c (r1.101 -> r1.102)
        (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/parser/parse_oper.c?r1=1.101&r2=1.102)