Recognize TRUE and FALSE as constants. (For compatibility, if there
+ exist columns named "true" or "false", then the identifiers refer to the
+ columns rather than Boolean constants.)
+
Support operators IS TRUE, IS FALSE, IS NOT TRUE, and IS NOT FALSE.
+
The "alternate-form-2" flag ("!") on the built-in printf implementation
+ now causes string substitutions to measure the width and precision in
+ characters instead of bytes.
+
If the xColumn method in a virtual table implementation returns
+ an error message using sqlite3_result_error() then give that error
+ message preference over internally-generated messages.
+
Added the -A command-line option to the CLI to make it easier to manage
+ SQLite Archive files.
+
Add support for INSERT OR REPLACE, INSERT OR IGNORE, and UPDATE OR REPLACE
+ in the Zipfile virtual table.
+
Enhance the sqlite3changeset_apply() interface so that it is hardened
+ against attacks from deliberately corrupted changeset objects.
+
Add the LEFT JOIN strength reduction optimization that converts a LEFT
+ JOIN into an ordinary JOIN if there exist terms in the WHERE clause
+ that would prevent the extra all-NULL row of the LEFT JOIN from
+ appearing in the output set.
+
Avoid unnecessary writes to the sqlite_sequence table when an
+ AUTOINCREMENT table is updated with an rowid that is less than the
+ maximum.
+
Fix the query planner so that it takes into account dependencies in
+ the arguments to table-valued functions in subexpressions in
+ the WHERE clause.
+ Ticket 80177f0c226ff54
+
Fix incorrect result with complex OR-connected WHERE and STAT4.
+ Ticket ec32177c99ccac2
+
Always interpret non-zero floating-point values as TRUE, even if
+ the integer part is zero.
+ Ticket 36fae083b450e3a
+
Fix an issue in the fsdir(PATH) table-valued function to the
+ fileio.c extension,
+ that caused a segfault if the fsdir() table was used as the inner table
+ of a join. Problem reported on the mailing list and fixed by check-in
+ 7ce4e71c1b7251be
+
Issue an error rather instead of an assertion-fault or null-pointer
+ dereference when the sqlite_master table is corrupted so that the
+ sqlite_sequence table root page is really a btree-index page. Check-in
+ 525deb7a67fbd647
+
Fix the ANALYZE command so that it computes statistics on tables
+ whose names begin with "sqlite". Check-in
+ 0249d9aecf69948d
+
+
Additional fixes for issues detected by
+ OSSFuzz:
+
+
Fix a possible infinite loop on VACUUM for corrupt database files.
+ Check-in 27754b74ddf64
+
Improve the performance of the replace() SQL function for cases where
+ there are many substitutions on megabyte-sized strings, in an attempt
+ to avoid OSSFuzz timeouts during testing.
+ Check-in fab2c2b07b5d3
+
Provide an appropriate error message when the sqlite_master table
+ contains a CREATE TABLE AS statement. Formerly this caused either an
+ assertion fault or null pointer dereference. Problem found by OSSFuzz
+ on the GDAL project. Check-in
+ d75e67654aa96
+