]> granicus.if.org Git - postgresql/commit
Fix erroneous parsing of tsquery input "... & !(subexpression) | ..."
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 19 Dec 2010 17:48:53 +0000 (12:48 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 19 Dec 2010 17:48:53 +0000 (12:48 -0500)
commitd9b99b4b60fd0925b9e223ec9f5ea275a8c2dde5
tree85b8613a3d09bdf87a84928e8c45a425eedab840
parentb16a18491f44c259774d92a144f8ba63bce8a886
Fix erroneous parsing of tsquery input "... & !(subexpression) | ..."

After parsing a parenthesized subexpression, we must pop all pending
ANDs and NOTs off the stack, just like the case for a simple operand.
Per bug #5793.

Also fix clones of this routine in contrib/intarray and contrib/ltree,
where input of types query_int and ltxtquery had the same problem.

Back-patch to all supported versions.
contrib/intarray/_int_bool.c
contrib/ltree/ltxtquery_io.c
src/backend/utils/adt/tsquery.c