Small. Fast. Reliable.
Choose any three.

SQLite Release 3.27.2 On 2019-02-25

Prior changes from version 3.27.0 (2019-02-07):

  1. Added the VACUUM INTO command
  2. Issue an SQLITE_WARNING message on the error log if a double-quoted string literal is used.
  3. The sqlite3_normalized_sql() interface works on any prepared statement created using sqlite3_prepare_v2() or sqlite3_prepare_v3(). It is no longer necessary to use sqlite3_prepare_v3() with SQLITE_PREPARE_NORMALIZE in order to use sqlite3_normalized_sql().
  4. Added the remove_diacritics=2 option to FTS3 and FTS5.
  5. Added the SQLITE_PREPARE_NO_VTAB option to sqlite3_prepare_v3(). Use that option to prevent circular references to shadow tables from causing resource leaks.
  6. Enhancements to the sqlite3_deserialize() interface:
    1. Add the SQLITE_FCNTL_SIZE_LIMIT file-control for setting an upper bound on the size of the in-memory database created by sqlite3_deserialize. The default upper bound is 1GiB, or whatever alternative value is specified by sqlite3_config(SQLITE_CONFIG_MEMDB_MAXSIZE) and/or SQLITE_MEMDB_DEFAULT_MAXSIZE.
    2. Honor the SQLITE_DESERIALIZE_READONLY flag, which was previously described in the documentation, but was previously a no-op.
    3. Enhance the "deserialize" command of the TCL Interface to give it new "--maxsize N" and "--readonly BOOLEAN" options.
  7. Enhancements to the CLI, mostly to support testing and debugging of the SQLite library itself:
    1. Add support for ".open --hexdb". The "dbtotxt" utility program used to generate the text for the "hexdb" is added to the source tree.
    2. Add support for the "--maxsize N" option on ".open --deserialize".
    3. Add the "--memtrace" command-line option, to show all memory allocations and deallocations.
    4. Add the ".eqp trace" option on builds with SQLITE_DEBUG, to enable bytecode program listing with indentation and PRAGMA vdbe_trace all in one step.
    5. Add the ".progress" command for accessing the sqlite3_progress_handler() interface.
    6. Add the "--async" option to the ".backup" command.
    7. Add options "--expanded", "--normalized", "--plain", "--profile", "--row", "--stmt", and "--close" to the ".trace" command.
  8. Increased robustness against malicious SQL that is run against a maliciously corrupted database.

    Bug fixes:

  9. Do not use a partial index to do a table scan on an IN operator. Ticket 1d958d90596593a774.
  10. Fix the query flattener so that it works on queries that contain subqueries that use window functions. Ticket 709fcd17810f65f717
  11. Ensure that ALTER TABLE modifies table and column names embedded in WITH clauses that are part of views and triggers.
  12. Fix a parser bug that prevented the use of parentheses around table-valued functions.
  13. Fix a problem with the OR optimization on indexes on expressions. Ticket d96eba87698a428c1d.
  14. Fix a problem with the LEFT JOIN strength reduction optimization in which the optimization was being applied inappropriately due to an IS NOT NULL operator. Ticket 5948e09b8c415bc45d.
  15. Fix the REPLACE command so that it is no longer able to sneak a NULL value into a NOT NULL column even if the NOT NULL column has a default value of NULL. Ticket e6f1f2e34dceeb1ed6
  16. Fix a problem with the use of window functions used within correlated subqueries. Ticket d0866b26f83e9c55e3
  17. Fix the ALTER TABLE RENAME COLUMN command so that it works for tables that have redundant UNIQUE constraints. Ticket bc8d94f0fbd633fd9a
  18. Fix a bug that caused zeroblob values to be truncated when inserted into a table that uses an expression index. Ticket bb4bdb9f7f654b0bb9

Prior changes from version 3.27.1 (2019-02-08):

  1. Fix a bug in the query optimizer: an adverse interaction between the OR optimization and the optimization that tries to use values read directly from an expression index instead of recomputing the expression. Ticket 4e8e4857d32d401f

Changes in this specific patch release, version 3.27.2 (2019-02-25):

  1. Fix a bug in the IN operator that was introduced by an attempted optimization in version 3.27.0. Ticket df46dfb631f75694
  2. Fix a bug causing a crash when a window function is misused. Ticket 4feb3159c6bc3f7e33959.
  3. Fix various documentation typos

    Hashes:

  4. SQLITE_SOURCE_ID: bd49a8271d650fa89e446b42e513b595a717b9212c91dd384aab871fc1d0f6d7
  5. SHA3-256 for sqlite3.c: 1dbae33bff261f979d0042338f72c9e734b11a80720fb32498bae9150cc576e7

A complete list of SQLite releases in a single page and a chronology are both also available. A detailed history of every check-in is available at SQLite version control site.