1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-07 02:42:48 +03:00

Fix PRAGMA integrity_check so that it does not cancel the PRAGMA vdbe_debug

setting.

FossilOrigin-Name: aaa3a19f8cf5ba7003634e4610abc7832354af91d7c7f65469218678f66bcd46
This commit is contained in:
drh
2019-01-11 14:46:44 +00:00
parent 1972c8cf07
commit f10ce63651
3 changed files with 8 additions and 8 deletions

View File

@@ -9804,7 +9804,7 @@ char *sqlite3BtreeIntegrityCheck(
Pgno i;
IntegrityCk sCheck;
BtShared *pBt = p->pBt;
int savedDbFlags = pBt->db->flags;
u64 savedDbFlags = pBt->db->flags;
char zErr[100];
VVA_ONLY( int nRef );