1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

Avoid a little bit of unnecessary computation in canonicalize_qual.

This commit is contained in:
Tom Lane
2000-02-27 19:45:44 +00:00
parent 8b33278450
commit 84ccfdf087

View File

@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/optimizer/prep/prepqual.c,v 1.22 2000/01/28 03:22:36 tgl Exp $ * $Header: /cvsroot/pgsql/src/backend/optimizer/prep/prepqual.c,v 1.23 2000/02/27 19:45:44 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -139,7 +139,8 @@ canonicalize_qual(Expr *qual, bool removeAndFlag)
* and only one relation is mentioned, and DNF is no larger than * and only one relation is mentioned, and DNF is no larger than
* the CNF representation. (Pretty shaky; can we improve on this?) * the CNF representation. (Pretty shaky; can we improve on this?)
*/ */
if (dnfok && dnfnodes <= cnfnodes && or_clause((Node *) newqual) && if (cnfok && dnfok && dnfnodes <= cnfnodes &&
or_clause((Node *) newqual) &&
NumRelids((Node *) newqual) == 1) NumRelids((Node *) newqual) == 1)
cnfok = false; cnfok = false;
/* /*