diff options
author | stephan <stephan@noemail.net> | 2022-12-05 13:07:06 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2022-12-05 13:07:06 +0000 |
commit | 8c696375b556cee3c123aba5aad2a497fa0be7e4 (patch) | |
tree | ab3924347223a2795cb50ee863198f963fe72270 /src | |
parent | fe8ecfd6966ec0c10705877c48f0df1d0f1587e4 (diff) | |
download | sqlite-8c696375b556cee3c123aba5aad2a497fa0be7e4.tar.gz sqlite-8c696375b556cee3c123aba5aad2a497fa0be7e4.zip |
Remove SQLITE_EXPERIMENTAL tag from sqlite3_vtab_collation() and fix a related doc typo.
FossilOrigin-Name: 35d670b3593a46e13ded541ef477fa35dac6bcb9c31e6cf4b90bd7fa550a8ee2
Diffstat (limited to 'src')
-rw-r--r-- | src/sqlite.h.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sqlite.h.in b/src/sqlite.h.in index 1b9d71e13..ba9aa5a93 100644 --- a/src/sqlite.h.in +++ b/src/sqlite.h.in @@ -7255,7 +7255,7 @@ struct sqlite3_index_info { ** the [sqlite3_vtab_collation()] interface. For most real-world virtual ** tables, the collating sequence of constraints does not matter (for example ** because the constraints are numeric) and so the sqlite3_vtab_collation() -** interface is no commonly needed. +** interface is not commonly needed. */ #define SQLITE_INDEX_CONSTRAINT_EQ 2 #define SQLITE_INDEX_CONSTRAINT_GT 4 @@ -9617,7 +9617,7 @@ int sqlite3_vtab_nochange(sqlite3_context*); ** <li><p> Otherwise, "BINARY" is returned. ** </ol> */ -SQLITE_EXPERIMENTAL const char *sqlite3_vtab_collation(sqlite3_index_info*,int); +const char *sqlite3_vtab_collation(sqlite3_index_info*,int); /* ** CAPI3REF: Determine if a virtual table query is DISTINCT |