1
0
mirror of https://github.com/sqlite/sqlite.git synced 2026-01-06 08:01:16 +03:00

Change the name of the CORRUPTIBLE macro to CORRUPT_DB.

FossilOrigin-Name: f865be10e85a4063394a21827db2d854fc25960c
This commit is contained in:
drh
2013-11-29 15:39:36 +00:00
parent 09fe614372
commit b202366509
4 changed files with 17 additions and 16 deletions

View File

@@ -3112,9 +3112,9 @@ int sqlite3VdbeRecordCompare(
idx1 = getVarint32(aKey1, szHdr1);
d1 = szHdr1;
assert( pKeyInfo->nField+pKeyInfo->nXField>=pPKey2->nField || CORRUPTIBLE );
assert( pKeyInfo->nField+pKeyInfo->nXField>=pPKey2->nField || CORRUPT_DB );
assert( pKeyInfo->aSortOrder!=0 );
assert( (idx1<=szHdr1 && i<pPKey2->nField) || CORRUPTIBLE );
assert( (idx1<=szHdr1 && i<pPKey2->nField) || CORRUPT_DB );
do{
u32 serial_type1;