Commit 1f4b046c authored by Teodor Sigaev's avatar Teodor Sigaev

Fix incorrect cleanup of tsquery in ts_rewrite(). Per bug #4933 by

 Aaron Marcuse-Kubitza <aaronmk@blackducksoftware.com>
parent c1b9ec24
......@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/adt/tsquery_rewrite.c,v 1.15 2009/07/16 06:33:44 petere Exp $
* $PostgreSQL: pgsql/src/backend/utils/adt/tsquery_rewrite.c,v 1.16 2009/07/28 09:31:55 teodor Exp $
*
*-------------------------------------------------------------------------
*/
......@@ -217,12 +217,12 @@ dropvoidsubtree(QTNode *root)
root->nchild = j;
if (root->valnode->qoperator.oper == OP_NOT && root->nchild == 0)
if (root->nchild == 0)
{
QTNFree(root);
root = NULL;
}
else if (root->nchild == 1)
else if (root->nchild == 1 && root->valnode->qoperator.oper != OP_NOT)
{
QTNode *nroot = root->child[0];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment