diff options
author | dan <Dan Kennedy> | 2022-12-05 19:16:23 +0000 |
---|---|---|
committer | dan <Dan Kennedy> | 2022-12-05 19:16:23 +0000 |
commit | d2db31c971cf0abb4dbe0ab51bfe0e8dbee232f2 (patch) | |
tree | 7400592902086b7443d0565ae0e1c7cd7bf53f13 /src/sqliteInt.h | |
parent | 49d402684b86e0f49264b5fbbe1d0ca2e7f64b93 (diff) | |
parent | 07c8e08889b840574bb28f7ffd0e19fc76ba5ea5 (diff) | |
download | sqlite-d2db31c971cf0abb4dbe0ab51bfe0e8dbee232f2.tar.gz sqlite-d2db31c971cf0abb4dbe0ab51bfe0e8dbee232f2.zip |
Enhance the sqlite3_stmt_scanstatus() API and add sqlite3_stmt_scanstatus_v2(). For creation of enhanced query performance reports.
FossilOrigin-Name: 4893b4e3eafc7c9c22b24717f90a585862203f987cf108b079ce6e946093e675
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 4711e4f09..5a19058bd 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -5565,7 +5565,9 @@ const char **sqlite3CompileOptions(int *pnOpt); int sqlite3KvvfsInit(void); #endif -#if defined(VDBE_PROFILE) || defined(SQLITE_PERFORMANCE_TRACE) +#if defined(VDBE_PROFILE) \ + || defined(SQLITE_PERFORMANCE_TRACE) \ + || defined(SQLITE_ENABLE_STMT_SCANSTATUS) sqlite3_uint64 sqlite3Hwtime(void); #endif |