diff options
author | drh <drh@noemail.net> | 2015-12-01 21:23:07 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2015-12-01 21:23:07 +0000 |
commit | 41d2e66ef3de25a0d78a79bfbb781f305842c77b (patch) | |
tree | b55cca9e909ac260476b57faedd3e3e43fb48d88 /src/whereInt.h | |
parent | 415afddaae95a60fea20b977b76eb6c86f902a40 (diff) | |
download | sqlite-41d2e66ef3de25a0d78a79bfbb781f305842c77b.tar.gz sqlite-41d2e66ef3de25a0d78a79bfbb781f305842c77b.zip |
Add the SQLITE_LIKE_DOESNT_MATCH_BLOBS compile-time option.
FossilOrigin-Name: 9e1d6d4c391ff90077f0d1cdeb567969fee9f747
Diffstat (limited to 'src/whereInt.h')
-rw-r--r-- | src/whereInt.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/whereInt.h b/src/whereInt.h index 86164d8c1..63d2d71cb 100644 --- a/src/whereInt.h +++ b/src/whereInt.h @@ -69,8 +69,10 @@ struct WhereLevel { int addrCont; /* Jump here to continue with the next loop cycle */ int addrFirst; /* First instruction of interior of the loop */ int addrBody; /* Beginning of the body of this loop */ +#ifndef SQLITE_LIKE_DOESNT_MATCH_BLOBS int iLikeRepCntr; /* LIKE range processing counter register */ int addrLikeRep; /* LIKE range processing address */ +#endif u8 iFrom; /* Which entry in the FROM clause */ u8 op, p3, p5; /* Opcode, P3 & P5 of the opcode that ends the loop */ int p1, p2; /* Operands of the opcode used to ends the loop */ |