Skip to content

Release/v3.46.0 #42

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Sep 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions source/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Changelog

## SQLite Release 3.46.0 On 2024-05-23

1. Enhance PRAGMA optimize in multiple ways, to make it simpler to use:
1. PRAGMA optimize automatically implements a temporary analysis limit to prevent excess runtime on large databases.
2. Added the new 0x10000 bitmask option to check for updates on all tables.
3. Automatically re-analyze tables that do not have sqlite_stat1 entries.
2. Enhancements to the date and time functions:
1. The strftime() SQL function now supports %G, %g, %U, and %V.
2. New modifiers 'ceiling' and 'floor' control the algorithm used to resolve ambiguous dates when shifting a date by an integer number of months and/or years.
3. The 'utc' and 'localtime' modifiers are now no-ops if SQLite knows that the time is already in UTC or in the localtime, respectively.
3. Add support for underscore ("_") characters between digits in numeric literals.
4. Add the json_pretty() SQL function.
5. Query planner improvements:
1. The "VALUES-as-coroutine" optimization enables INSERT statements with thousands of rows in the VALUES clause to parse and run in about half the time and using about half as much memory.
2. Allow the use of an index for queries like "SELECT count(DISTINCT col) FROM ...", even if the index records are not smaller than the table records.
3. Improved recognition of cases where the value of an SQL function is constant because all its arguments are constant.
3. Enhance the WHERE-clause push-down optimization so that it is able to push down WHERE clause terms containing uncorrelated subqueries.
6. Allocate additional memory from the heap for the SQL parser stack if that stack overflows, rather than reporting a "parser stack overflow" error.
7. JSON changes:
1. Allow ASCII control characters within JSON5 string literals.
2. Fix the -> and ->> operators so that when the right-hand side operand is a string that looks like an integer it is still treated as a string, because that is what PostgreSQL does.
8. Allow large hexadecimal literals to be used as the DEFAULT value to a table column.

## SQLite Release 3.45.3 On 2024-04-15

1. Fix a long-standing bug (going back to version 3.24.0) that might (rarely) cause the "old.*" values of an UPDATE trigger to be incorrect if that trigger fires in response to an UPSERT. Forum post 284955a3cd454a15.
Expand Down
16 changes: 8 additions & 8 deletions source/README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
Download: https://sqlite.org/2024/sqlite-amalgamation-3450300.zip
Download: https://sqlite.org/2024/sqlite-amalgamation-3460000.zip

```
Archive: sqlite-amalgamation-3450300.zip
Archive: sqlite-amalgamation-3460000.zip
Length Method Size Cmpr Date Time CRC-32 Name
-------- ------ ------- ---- ---------- ----- -------- ----
0 Stored 0 0% 2024-04-15 15:46 00000000 sqlite-amalgamation-3450300/
9027389 Defl:N 2324116 74% 2024-04-15 15:46 be0e77e7 sqlite-amalgamation-3450300/sqlite3.c
912165 Defl:N 236076 74% 2024-04-15 15:46 722a18fe sqlite-amalgamation-3450300/shell.c
641889 Defl:N 166136 74% 2024-04-15 15:46 0f3e31e0 sqlite-amalgamation-3450300/sqlite3.h
38149 Defl:N 6615 83% 2024-04-15 15:46 c5ea7fc8 sqlite-amalgamation-3450300/sqlite3ext.h
0 Stored 0 0% 2024-05-23 15:51 00000000 sqlite-amalgamation-3460000/
9089040 Defl:N 2341603 74% 2024-05-23 15:51 89547100 sqlite-amalgamation-3460000/sqlite3.c
957898 Defl:N 247821 74% 2024-05-23 15:51 291389cf sqlite-amalgamation-3460000/shell.c
644069 Defl:N 166685 74% 2024-05-23 15:51 fc181678 sqlite-amalgamation-3460000/sqlite3.h
38149 Defl:N 6615 83% 2024-05-23 15:51 c5ea7fc8 sqlite-amalgamation-3460000/sqlite3ext.h
-------- ------- --- -------
10619592 2732943 74% 5 files
10729156 2762724 74% 5 files
```
Loading