-C Add\sa\sCredits\ssection\sto\sthe\sversion3.html\sdocument.\s(CVS\s1788)
-D 2004-06-30T22:54:06
+C Omit\sthe\s"LL"\sliteral\squalifier\sas\sit\scauses\sproblems\sfor\ssome\scompilers.\s(CVS\s1789)
+D 2004-06-30T23:04:33
F Makefile.in f5788bf4daea9b25424df5ccb529ac3438efb2b2
F Makefile.linux-gcc a9e5a0d309fa7c38e7c14d3ecf7690879d3a5457
F README f1de682fbbd94899d50aca13d387d1b3fd3be2dd
F src/utf.c f03535db72bfa09e24202ccdd245f21d2fc65f0a
F src/util.c a373ba2f631181b3302f3c2ebdfc9772833c6a17
F src/vacuum.c b8546f4921719458cc537b9e736df52a8256399c
-F src/vdbe.c 4e756ef91c9eb9ffd3dd5be17bda9d5bf2755a3e
+F src/vdbe.c ed98f1d70b0d7126c603b086137af85c7b9d7855
F src/vdbe.h 75b241c02431b9c0f16eaa9cdbb34146c6287f52
F src/vdbeInt.h 7160653a006b6d2c4a00d204112a095bdf842ab6
F src/vdbeapi.c 1d2a0bc5033a677f414c592aacd5d02f07ebbef5
F www/vdbe.tcl 59288db1ac5c0616296b26dce071c36cb611dfe9
F www/version3.tcl 092a01f5ef430d2c4acc0ae558d74c4bb89638a0
F www/whentouse.tcl a8335bce47cc2fddb07f19052cb0cb4d9129a8e4
-P 8a6e4ea79e5f4333fbc767832d5e55c77da204e1
-R cf1951d0f07edadbc952b3f25c1c3914
+P 750ec96172e200f67cbd64659a87a1633edd544e
+R 4e550c0e292408e2219d24d8430e26cc
U drh
-Z 7ea747c3bbe6be9be89b1f471e32932f
+Z 5e1d02f1304462e1db97a82829a9a2bc
-750ec96172e200f67cbd64659a87a1633edd544e
\ No newline at end of file
+2010ed8040a0956f57f4ca594973ad93c0551f64
\ No newline at end of file
** in this file for details. If in doubt, do not deviate from existing
** commenting and indentation practices when changing or adding code.
**
-** $Id: vdbe.c,v 1.399 2004/06/30 11:41:55 drh Exp $
+** $Id: vdbe.c,v 1.400 2004/06/30 23:04:33 drh Exp $
*/
#include "sqliteInt.h"
#include "os.h"
}else{
sqlite3BtreeKeySize(pC->pCursor, &v);
v = keyToInt(v);
- if( v==0x7fffffffffffffffLL ){
+ if( v==0x7fffffffffffffff ){
pC->useRandomRowid = 1;
}else{
v++;
}
}
}
- if( v<0x7fffffffffffffffLL ){
+ if( v<0x7fffffffffffffff ){
pC->nextRowidValid = 1;
pC->nextRowid = v+1;
}else{