]> granicus.if.org Git - postgresql/commit
Fix coerce_to_target_type for coerce_type's klugy handling of COLLATE.
authorTom Lane <tgl@sss.pgh.pa.us>
Mon, 2 Jan 2012 19:43:51 +0000 (14:43 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Mon, 2 Jan 2012 19:43:51 +0000 (14:43 -0500)
commit188f1b928205bf33ce29887eeeee26ce9227908f
tree37b742f21a639411ff5c6e8d2bb8e9123bf53860
parent71b23708d4433d731082ed9c5ca491c7595e0e4d
Fix coerce_to_target_type for coerce_type's klugy handling of COLLATE.

Because coerce_type recurses into the argument of a CollateExpr,
coerce_to_target_type's longstanding code for detecting whether coerce_type
had actually done anything (to wit, returned a different node than it
passed in) was broken in 9.1.  This resulted in unexpected failures in
hide_coercion_node; which was not the latter's fault, since it's critical
that we never call it on anything that wasn't inserted by coerce_type.
(Else we might decide to "hide" a user-written function call.)

Fix by removing and replacing the CollateExpr in coerce_to_target_type
itself.  This is all pretty ugly but I don't immediately see a way to make
it nicer.

Per report from Jean-Yves F. Barbier.
src/backend/parser/parse_coerce.c
src/test/regress/expected/collate.out
src/test/regress/sql/collate.sql