Index: SQLite.Interop/src/expr.c ================================================================== --- SQLite.Interop/src/expr.c +++ SQLite.Interop/src/expr.c @@ -13,11 +13,11 @@ ** ************************************************************************* ** This file contains routines used for analyzing expressions and ** for generating VDBE code that evaluates expressions in SQLite. ** -** $Id: expr.c,v 1.8 2005/08/24 15:05:38 rmsimpson Exp $ +** $Id: expr.c,v 1.9 2005/08/24 22:09:57 rmsimpson Exp $ */ #include "sqliteInt.h" #include /* @@ -1742,11 +1742,10 @@ pExpr->iColumn == OE_Abort || pExpr->iColumn == OE_Fail ); sqlite3DequoteExpr(pExpr); sqlite3VdbeOp3(v, OP_Halt, SQLITE_CONSTRAINT, pExpr->iColumn, (const char *)pExpr->token.z, pExpr->token.n); -// sqlite3VdbeDequoteP3(v, -1); } else { assert( pExpr->iColumn == OE_Ignore ); sqlite3VdbeAddOp(v, OP_ContextPop, 0, 0); sqlite3VdbeAddOp(v, OP_Goto, 0, pParse->trigStack->ignoreJump); VdbeComment((v, "# raise(IGNORE)")); Index: SQLite.Interop/src/vdbeInt.h ================================================================== --- SQLite.Interop/src/vdbeInt.h +++ SQLite.Interop/src/vdbeInt.h @@ -263,13 +263,13 @@ ** A FifoPage structure holds a single page of valves. Pages are arranged ** in a list. */ typedef struct FifoPage FifoPage; struct FifoPage { - u16 nSlot; /* Number of entries aSlot[] */ - u16 iWrite; /* Push the next value into this entry in aSlot[] */ - i16 iRead; /* Read the next value from this entry in aSlot[] */ + int nSlot; /* Number of entries aSlot[] */ + int iWrite; /* Push the next value into this entry in aSlot[] */ + int iRead; /* Read the next value from this entry in aSlot[] */ FifoPage *pNext; /* Next page in the fifo */ i64 aSlot[1]; /* One or more slots for rowid values */ }; /*