diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/sqlite.h.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/sqlite.h.in b/src/sqlite.h.in index 28c4bf01e..553dc8aea 100644 --- a/src/sqlite.h.in +++ b/src/sqlite.h.in @@ -4169,10 +4169,15 @@ int sqlite3_prepare16_v3( ** ^The string returned by sqlite3_expanded_sql(P), on the other hand, ** is obtained from [sqlite3_malloc()] and must be free by the application ** by passing it to [sqlite3_free()]. +** +** ^The sqlite3_normalized_sql() interface is only available if +** the [SQLITE_ENABLE_NORMALIZE] compile-time option is defined. */ const char *sqlite3_sql(sqlite3_stmt *pStmt); char *sqlite3_expanded_sql(sqlite3_stmt *pStmt); +#ifdef SQLITE_ENABLE_NORMALIZE const char *sqlite3_normalized_sql(sqlite3_stmt *pStmt); +#endif /* ** CAPI3REF: Determine If An SQL Statement Writes The Database |