diff options
author | drh <> | 2021-12-06 21:45:31 +0000 |
---|---|---|
committer | drh <> | 2021-12-06 21:45:31 +0000 |
commit | 23d41e63f2e4560728e13cefabb4fd411c687672 (patch) | |
tree | b1f361f9497cb7b10ce348af8bee86df5f6cbc8b /src/vdbeInt.h | |
parent | 50fb7e09b4247ce34a0b0266614303d00f929def (diff) | |
download | sqlite-23d41e63f2e4560728e13cefabb4fd411c687672.tar.gz sqlite-23d41e63f2e4560728e13cefabb4fd411c687672.zip |
Add SQLITE_STMTSTATUS_FILTER_HIT and _MISS for tracking the effectiveness
of Bloom filters.
FossilOrigin-Name: 24ba535d200fc8a99dd8e66c6d100b5f6ae442098bafb152008429398eefe3e7
Diffstat (limited to 'src/vdbeInt.h')
-rw-r--r-- | src/vdbeInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vdbeInt.h b/src/vdbeInt.h index c76cdbfdb..38863f6d6 100644 --- a/src/vdbeInt.h +++ b/src/vdbeInt.h @@ -430,7 +430,7 @@ struct Vdbe { bft bIsReader:1; /* True for statements that read */ yDbMask btreeMask; /* Bitmask of db->aDb[] entries referenced */ yDbMask lockMask; /* Subset of btreeMask that requires a lock */ - u32 aCounter[7]; /* Counters used by sqlite3_stmt_status() */ + u32 aCounter[9]; /* Counters used by sqlite3_stmt_status() */ char *zSql; /* Text of the SQL statement that generated this */ #ifdef SQLITE_ENABLE_NORMALIZE char *zNormSql; /* Normalization of the associated SQL statement */ |