aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/loadext.c2
-rw-r--r--src/sqlite.h.in6
-rw-r--r--src/sqlite3ext.h4
3 files changed, 6 insertions, 6 deletions
diff --git a/src/loadext.c b/src/loadext.c
index d649616b7..1ae87d6b7 100644
--- a/src/loadext.c
+++ b/src/loadext.c
@@ -408,7 +408,7 @@ static const sqlite3_api_routines sqlite3Apis = {
sqlite3_value_free,
sqlite3_result_zeroblob64,
sqlite3_bind_zeroblob64,
- /* Version 3.8.12 and later */
+ /* Version 3.9.0 and later */
sqlite3_value_subtype,
sqlite3_result_subtype
};
diff --git a/src/sqlite.h.in b/src/sqlite.h.in
index 75e51f4b0..c3b2890f0 100644
--- a/src/sqlite.h.in
+++ b/src/sqlite.h.in
@@ -5656,9 +5656,9 @@ struct sqlite3_module {
** to included crashing the application). The estimatedRows field should
** therefore only be used if [sqlite3_libversion_number()] returns a
** value greater than or equal to 3008002. Similarly, the idxFlags field
-** was added for version 3.8.12. It may therefore only be used if
+** was added for version 3.9.0. It may therefore only be used if
** sqlite3_libversion_number() returns a value greater than or equal to
-** 3008012.
+** 3009000.
*/
struct sqlite3_index_info {
/* Inputs */
@@ -5686,7 +5686,7 @@ struct sqlite3_index_info {
double estimatedCost; /* Estimated cost of using this index */
/* Fields below are only available in SQLite 3.8.2 and later */
sqlite3_int64 estimatedRows; /* Estimated number of rows returned */
- /* Fields below are only available in SQLite 3.8.12 and later */
+ /* Fields below are only available in SQLite 3.9.0 and later */
int idxFlags; /* Mask of SQLITE_INDEX_SCAN_* flags */
};
diff --git a/src/sqlite3ext.h b/src/sqlite3ext.h
index 9b9f610e9..017ea308b 100644
--- a/src/sqlite3ext.h
+++ b/src/sqlite3ext.h
@@ -272,7 +272,7 @@ struct sqlite3_api_routines {
void (*value_free)(sqlite3_value*);
int (*result_zeroblob64)(sqlite3_context*,sqlite3_uint64);
int (*bind_zeroblob64)(sqlite3_stmt*, int, sqlite3_uint64);
- /* Version 3.8.12 and later */
+ /* Version 3.9.0 and later */
unsigned int (*value_subtype)(sqlite3_value*);
void (*result_subtype)(sqlite3_context*,unsigned int);
};
@@ -511,7 +511,7 @@ struct sqlite3_api_routines {
#define sqlite3_value_free sqlite3_api->value_free
#define sqlite3_result_zeroblob64 sqlite3_api->result_zeroblob64
#define sqlite3_bind_zeroblob64 sqlite3_api->bind_zeroblob64
-/* Version 3.8.12 and later */
+/* Version 3.9.0 and later */
#define sqlite3_value_subtype sqlite3_api->value_subtype
#define sqlite3_result_subtype sqlite3_api->result_subtype
#endif /* !defined(SQLITE_CORE) && !defined(SQLITE_OMIT_LOAD_EXTENSION) */