diff options
Diffstat (limited to 'src/where.c')
-rw-r--r-- | src/where.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/where.c b/src/where.c index 1bf6f25ee..9f95e2819 100644 --- a/src/where.c +++ b/src/where.c @@ -13,7 +13,7 @@ ** the WHERE clause of SQL statements. Also found here are subroutines ** to generate VDBE code to evaluate expressions. ** -** $Id: where.c,v 1.42 2002/05/15 08:30:14 danielk1977 Exp $ +** $Id: where.c,v 1.43 2002/05/15 11:44:15 drh Exp $ */ #include "sqliteInt.h" @@ -217,20 +217,20 @@ WhereInfo *sqliteWhereBegin( for(i=0; i<nExpr; i++){ exprAnalyze(base, &aExpr[i]); if (pParse->trigStack && pParse->trigStack->newIdx >= 0) { - aExpr[i].prereqRight = - aExpr[i].prereqRight & ~(1 << pParse->trigStack->newIdx - base); - aExpr[i].prereqLeft = - aExpr[i].prereqLeft & ~(1 << pParse->trigStack->newIdx - base); - aExpr[i].prereqAll = - aExpr[i].prereqAll & ~(1 << pParse->trigStack->newIdx - base); + aExpr[i].prereqRight = + aExpr[i].prereqRight & ~(1 << pParse->trigStack->newIdx - base); + aExpr[i].prereqLeft = + aExpr[i].prereqLeft & ~(1 << pParse->trigStack->newIdx - base); + aExpr[i].prereqAll = + aExpr[i].prereqAll & ~(1 << pParse->trigStack->newIdx - base); } if (pParse->trigStack && pParse->trigStack->oldIdx >= 0) { - aExpr[i].prereqRight = - aExpr[i].prereqRight & ~(1 << pParse->trigStack->oldIdx - base); - aExpr[i].prereqLeft = - aExpr[i].prereqLeft & ~(1 << pParse->trigStack->oldIdx - base); - aExpr[i].prereqAll = - aExpr[i].prereqAll & ~(1 << pParse->trigStack->oldIdx - base); + aExpr[i].prereqRight = + aExpr[i].prereqRight & ~(1 << pParse->trigStack->oldIdx - base); + aExpr[i].prereqLeft = + aExpr[i].prereqLeft & ~(1 << pParse->trigStack->oldIdx - base); + aExpr[i].prereqAll = + aExpr[i].prereqAll & ~(1 << pParse->trigStack->oldIdx - base); } } |