1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Updated testing of cursor-hints. Remove the test_cursorhint.c file and

associated logic in the core and do tests based purely on the newly enhanced
EXPLAIN output.

FossilOrigin-Name: bf383e665a191a4f33a540d1240960a922e22813
This commit is contained in:
drh
2015-08-14 20:08:13 +00:00
parent 2f2b02785a
commit 1eb6eeb829
7 changed files with 102 additions and 222 deletions

View File

@@ -6570,10 +6570,6 @@ case OP_CursorHint: {
pC = p->apCsr[pOp->p1];
if( pC ){
sqlite3BtreeCursorHint(pC->pCursor, BTREE_HINT_RANGE, pOp->p4.pExpr, aMem);
#ifdef SQLITE_TEST
void sqlite3BtreeCursorHintTest(Mem*, Expr*);
sqlite3BtreeCursorHintTest(p->aMem, pOp->p4.pExpr);
#endif
}
break;
}