diff options
author | drh <> | 2025-06-10 16:02:29 +0000 |
---|---|---|
committer | drh <> | 2025-06-10 16:02:29 +0000 |
commit | 90ba0d4995e5bf98efc55dd6056960b7e031cd5c (patch) | |
tree | c171650c210495b4b7c2885aa6ef2f8ae21ad742 /src/sqliteInt.h | |
parent | f091f423ad89143d8b923080d1c6c9c20550a185 (diff) | |
download | sqlite-90ba0d4995e5bf98efc55dd6056960b7e031cd5c.tar.gz sqlite-90ba0d4995e5bf98efc55dd6056960b7e031cd5c.zip |
Improved diagnostics for Bitvec: Add the sqlite3ShowBitvec() routine that
can be called from a debugger (only available with SQLITE_DEBUG). Add new
output opcodes for sqlite3BitvecBuiltinTest().
FossilOrigin-Name: dea1e37fa67ada6efc1533b449d9eb22338d9e58eec8f89b48c38319c212c8f4
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index c65d159d1..e28e338c4 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -4894,6 +4894,7 @@ char *sqlite3VMPrintf(sqlite3*,const char*, va_list); void sqlite3ShowWindow(const Window*); void sqlite3ShowWinFunc(const Window*); #endif + void sqlite3ShowBitvec(Bitvec*); #endif void sqlite3SetString(char **, sqlite3*, const char*); |