SHA256
1
0
forked from pool/sqlite3

Accepting request 986280 from home:AndreasStieger:branches:server:database

sqlite3 3.39.0

OBS-URL: https://build.opensuse.org/request/show/986280
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=286
This commit is contained in:
Lars Vogdt
2022-07-01 19:42:51 +00:00
committed by Git OBS Bridge
parent 6cf8e942d7
commit 38c80b0039
7 changed files with 33 additions and 36 deletions

View File

@@ -1,3 +1,28 @@
-------------------------------------------------------------------
Fri Jul 1 19:31:59 UTC 2022 - Andreas Stieger <andreas.stieger@gmx.de>
- update to 3.39.0:
* Add (long overdue) support for RIGHT and FULL OUTER JOIN
* Add new binary comparison operators IS NOT DISTINCT FROM and
IS DISTINCT FROM that are equivalent to IS and IS NOT,
respective, for compatibility with PostgreSQL and SQL standards
* Add a new return code (value "3") from the sqlite3_vtab_distinct()
interface that indicates a query that has both DISTINCT and
ORDER BY clauses
* Added the sqlite3_db_name() interface
* The unix os interface resolves all symbolic links in database
filenames to create a canonical name for the database before
the file is opened
* Defer materializing views until the materialization is actually
needed, thus avoiding unnecessary work if the materialization
turns out to never be used
* The HAVING clause of a SELECT statement is now allowed on any
aggregate query, even queries that do not have a GROUP BY
clause
* Many microoptimizations collectively reduce CPU cycles by about
2.3%.
- drop sqlite-src-3380100-atof1.patch, included upstream
-------------------------------------------------------------------
Sun May 8 10:00:51 UTC 2022 - Andreas Stieger <andreas.stieger@gmx.de>