pgsql: Fix erroneous parsing of tsquery input "... & !(subexpression) |

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Fix erroneous parsing of tsquery input "... & !(subexpression) |
Date: 2010-12-19 17:49:17
Message-ID: E1PUNNl-00011B-Pj@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

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.

Branch
------
master

Details
-------
http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=abc10262696e53773c9a8c9f279bbd464b464190

Modified Files
--------------
contrib/intarray/_int_bool.c | 4 ++--
contrib/ltree/ltxtquery_io.c | 4 ++--
src/backend/utils/adt/tsquery.c | 4 ++--
3 files changed, 6 insertions(+), 6 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2010-12-19 20:32:59 pgsql: Fix up handling of simple-form CASE with constant test expressio
Previous Message Magnus Hagander 2010-12-19 15:48:20 pgsql: Support for collecting crash dumps on Windows