diff options
author | drh <drh@noemail.net> | 2014-02-06 23:56:27 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2014-02-06 23:56:27 +0000 |
commit | b22f7c831f4b3c1cee4dba6074934fd00916e027 (patch) | |
tree | 84ed00def2930a09bf20ab989d0171a7e0d94f52 /src/expr.c | |
parent | 0211d8bca4ddab5a0d4a1f5299c3cb7cd6effe7d (diff) | |
download | sqlite-b22f7c831f4b3c1cee4dba6074934fd00916e027.tar.gz sqlite-b22f7c831f4b3c1cee4dba6074934fd00916e027.zip |
Delete the OP_VerifySchema opcode. Enhance OP_Transaction to do the schema
version checks that OP_VerifySchema used to do.
FossilOrigin-Name: 2f3376ebf13df44e6acf27cb1f07172cd8b34033
Diffstat (limited to 'src/expr.c')
-rw-r--r-- | src/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expr.c b/src/expr.c index ee9d7877a..e417d8aad 100644 --- a/src/expr.c +++ b/src/expr.c @@ -1584,7 +1584,7 @@ int sqlite3FindInIndex(Parse *pParse, Expr *pX, int *prNotFound){ pExpr = p->pEList->a[0].pExpr; iCol = (i16)pExpr->iColumn; - /* Code an OP_VerifyCookie and OP_TableLock for <table>. */ + /* Code an OP_Transaction and OP_TableLock for <table>. */ iDb = sqlite3SchemaToIndex(db, pTab->pSchema); sqlite3CodeVerifySchema(pParse, iDb); sqlite3TableLock(pParse, iDb, pTab->tnum, 0, pTab->zName); |