1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-11 01:42:22 +03:00

Merge the latest trunk changes into the sessions branch.

FossilOrigin-Name: 6994826c0784280f2e9728dfa4185848846d03df
This commit is contained in:
drh
2013-04-22 23:59:06 +00:00
88 changed files with 5964 additions and 550 deletions

View File

@@ -317,7 +317,7 @@ int sqlite3_blob_open(
}
sqlite3_bind_int64(pBlob->pStmt, 1, iRow);
rc = blobSeekToRow(pBlob, iRow, &zErr);
} while( (++nAttempt)<5 && rc==SQLITE_SCHEMA );
} while( (++nAttempt)<SQLITE_MAX_SCHEMA_RETRY && rc==SQLITE_SCHEMA );
blob_open_out:
if( rc==SQLITE_OK && db->mallocFailed==0 ){