Source-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS import: src/external/public-domain/sqlite/dist



Module Name:    src
Committed By:   christos
Date:           Fri Mar  1 14:47:31 UTC 2024

Update of /cvsroot/src/external/public-domain/sqlite/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv10213

Log Message:
Import sqlite-3.45-1 (previous was 3.43.0)

SQLite Release 3.45.1 On 2024-01-30
Prior changes from version 3.45.0 (2024-01-15):

Added the SQLITE_RESULT_SUBTYPE property for application-defined
SQL functions. All application defined SQL functions that invokes
sqlite3_result_subtype() must be registered with this new property.
Failure to do so might cause the call to sqlite3_result_subtype()
to behave as a no-op. Compile with -DSQLITE_STRICT_SUBTYPE=1 to
cause an SQL error to be raised if a function that is not
SQLITE_RESULT_SUBTYPE tries invokes sqlite3_result_subtype(). The
use of -DSQLITE_STRICT_SUBTYPE=1 is a recommended compile-time
option for every application that makes use of subtypes.

Enhancements to the JSON SQL functions:
All JSON functions are rewritten to use a new internal parse tree
format called JSONB. The new parse-tree format is serializable and
hence can be stored in the database to avoid unnecessary re-parsing
whenever the JSON value is used.  New versions of JSON-generating
functions generate binary JSONB instead of JSON text.
The json_valid() function adds an optional second argument that
specifies what it means for the first argument to be "well-formed".
Add the FTS5 tokendata option to the FTS5 virtual table.
The SQLITE_DIRECT_OVERFLOW_READ optimization is now enabled by
default. Disable it at compile-time using -DSQLITE_DIRECT_OVERFLOW_READ=0.

Query planner improvements:
Do not allow the transitive constraint optimization to trick the
query planner into using a range constraint when a better equality
constraint is available. (Forum post 2568d1f6e6.)
The query planner now does a better job of disregarding indexes
that ANALYZE identifies as low-quality. (Forum post 6f0958b03b.)
Increase the default value for SQLITE_MAX_PAGE_COUNT from 1073741824
to 4294967294.

Enhancements to the CLI:
Improvements to the display of UTF-8 content on Windows
Automatically detect playback of ".dump" scripts and make appropriate
changes to settings such as ".dbconfig defensive off" and ".dbconfig
dqs_dll on".

Changes in this specific patch release, version 3.45.1 (2024-01-30):
Restore the JSON BLOB input bug, and promise to support the anomaly
in subsequent releases, for backward compatibility.
Fix the PRAGMA integrity_check command so that it works on read-only
databases that contain FTS3 and FTS5 tables. This resolves an issue
introduced in version 3.44.0 but was undiscovered until after the
3.45.0 release.

Fix issues associated with processing corrupt JSONB inputs:
Prevent exponential runtime when converting a corrupt JSONB into text.
Fix a possible read of one byte past the end of the JSONB blob when
converting a corrupt JSONB into text.
Enhanced testing using jfuzz to prevent any future JSONB problems
such as the above.
Fix a long-standing bug in which a read of a few bytes past the
end of a memory-mapped segment might occur when accessing a craftily
corrupted database using memory-mapped database.
Fix a long-standing bug in which a NULL pointer dereference might
occur in the bytecode engine due to incorrect bytecode being
generated for a class of SQL statements that are deliberately
designed to stress the query planner but which are otherwise
pointless.

[for changes to previous releases see:
https://www.sqlite.org/src/timeline?c=1066602b2b&y=ci]


Status:

Vendor Tag:     SQLITE
Release Tags:   sqlite-3-45-1
                
U src/external/public-domain/sqlite/dist/compile
C src/external/public-domain/sqlite/dist/sqlite3.c
U src/external/public-domain/sqlite/dist/sqlite3.rc
U src/external/public-domain/sqlite/dist/Makefile.msc
U src/external/public-domain/sqlite/dist/sqlite3.1
U src/external/public-domain/sqlite/dist/Makefile.in
U src/external/public-domain/sqlite/dist/install-sh
U src/external/public-domain/sqlite/dist/aclocal.m4
U src/external/public-domain/sqlite/dist/config.sub
U src/external/public-domain/sqlite/dist/Makefile.fallback
C src/external/public-domain/sqlite/dist/shell.c
U src/external/public-domain/sqlite/dist/depcomp
U src/external/public-domain/sqlite/dist/sqlite3.h
U src/external/public-domain/sqlite/dist/Makefile.am
U src/external/public-domain/sqlite/dist/missing
U src/external/public-domain/sqlite/dist/README.txt
U src/external/public-domain/sqlite/dist/ltmain.sh
U src/external/public-domain/sqlite/dist/config.guess
U src/external/public-domain/sqlite/dist/configure.ac
U src/external/public-domain/sqlite/dist/INSTALL
U src/external/public-domain/sqlite/dist/sqlite3ext.h
U src/external/public-domain/sqlite/dist/configure
U src/external/public-domain/sqlite/dist/Replace.cs
U src/external/public-domain/sqlite/dist/sqlite3rc.h
U src/external/public-domain/sqlite/dist/sqlite3.pc.in
U src/external/public-domain/sqlite/dist/tea/Makefile.in
U src/external/public-domain/sqlite/dist/tea/aclocal.m4
U src/external/public-domain/sqlite/dist/tea/configure.ac
U src/external/public-domain/sqlite/dist/tea/pkgIndex.tcl.in
U src/external/public-domain/sqlite/dist/tea/README
U src/external/public-domain/sqlite/dist/tea/configure
U src/external/public-domain/sqlite/dist/tea/license.terms
U src/external/public-domain/sqlite/dist/tea/tclconfig/tcl.m4
U src/external/public-domain/sqlite/dist/tea/tclconfig/install-sh
U src/external/public-domain/sqlite/dist/tea/win/makefile.vc
U src/external/public-domain/sqlite/dist/tea/win/nmakehlp.c
U src/external/public-domain/sqlite/dist/tea/win/rules.vc
U src/external/public-domain/sqlite/dist/tea/doc/sqlite3.n
U src/external/public-domain/sqlite/dist/tea/generic/tclsqlite3.c

2 conflicts created by this import.
Use the following command to help the merge:

        cvs checkout -jSQLITE:yesterday -jSQLITE src/external/public-domain/sqlite/dist




Home | Main Index | Thread Index | Old Index