Commit f03729c6 authored by Bruce Momjian's avatar Bruce Momjian

Fix for NOT in where clause causing crash.

parent 39792e5b
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/optimizer/path/clausesel.c,v 1.13 1998/09/01 04:29:29 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/optimizer/path/clausesel.c,v 1.14 1998/11/09 02:49:13 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -254,6 +254,11 @@ compute_selec(Query *root, List *clauses, List *or_selectivities) ...@@ -254,6 +254,11 @@ compute_selec(Query *root, List *clauses, List *or_selectivities)
*/ */
s1 = 0.1; s1 = 0.1;
} }
else if (not_clause((Node *) clause))
{
/* negate this baby */
return 1 - compute_selec(root, ((Expr *)clause)->args, or_selectivities);
}
else if (is_subplan((Node *) clause)) else if (is_subplan((Node *) clause))
{ {
......
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