Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | A fix to sqlite4VdbeDecodeIntKey(). |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | primary-keys |
Files: | files | file ages | folders |
SHA1: |
b05e622090d719721951e72a1ddc2669 |
User & Date: | drh 2012-04-20 14:21:30.382 |
Context
2012-04-20
| ||
18:35 | Changes to where.c to use the PK columns appended to each auxiliary index entry. check-in: 4c1dca78b3 user: dan tags: primary-keys | |
14:21 | A fix to sqlite4VdbeDecodeIntKey(). check-in: b05e622090 user: drh tags: primary-keys | |
2012-04-19
| ||
18:51 | Fix a problem with inequality constraints and indexes. check-in: 14d96763cc user: dan tags: primary-keys | |
Changes
Changes to src/vdbecodec.c.
︙ | ︙ | |||
705 706 707 708 709 710 711 712 713 714 715 716 717 718 | memcpy(aBuf, aKey, nKey); aKey = aBuf; for(i=1; i<nKey; i++) aBuf[i] ^= 0xff; e = 0x13-x; }else if( x>=0x17 && x<=0x21 ){ isNeg = 0; e = x-0x17; }else{ return 0; } m = 0; i = 1; do{ m = m*100 + aKey[i]/2; | > > > | 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 | memcpy(aBuf, aKey, nKey); aKey = aBuf; for(i=1; i<nKey; i++) aBuf[i] ^= 0xff; e = 0x13-x; }else if( x>=0x17 && x<=0x21 ){ isNeg = 0; e = x-0x17; }else if( x==0x15 ){ *pVal = 0; return 1; }else{ return 0; } m = 0; i = 1; do{ m = m*100 + aKey[i]/2; |
︙ | ︙ |