SHA256
1
0
forked from pool/sqlite3

- New version 3.7.17.

- Full list of changes: http://sqlite.org/releaselog/3_7_17.html

OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=76
This commit is contained in:
Reinhard Max 2013-08-26 10:43:29 +00:00 committed by Git OBS Bridge
parent c77337250e
commit 2b5e93f41a

View File

@ -1,3 +1,34 @@
-------------------------------------------------------------------
Mon Aug 26 10:33:58 UTC 2013 - max@suse.com
- New version 3.7.17.
- Full list of changes: http://sqlite.org/releaselog/3_7_17.html
- Highlights:
* Add support for memory-mapped I/O.
* Assigned the integer at offset 68 in the database header as
the Application ID for when SQLite is used as an application
file-format. Added the PRAGMA application_id command to query
and set the Application ID.
* Enhance the extension loading mechanism to be more flexible
(while still maintaining backwards compatibility) in two ways:
1. If the default entry point "sqlite3_extension_init" is not
present in the loadable extension, also try an entry point
"sqlite3_X_init" where "X" is based on the shared library
filename. This allows every extension to have a different
entry point, which allows them to be statically linked with
no code changes.
2. The shared library filename passed to
sqlite3_load_extension() may omit the filename suffix, and
an appropriate architecture-dependent suffix (".so",
".dylib", or ".dll") will be added automatically.
* Added many new loadable extensions to the source tree,
including amatch, closure, fuzzer, ieee754, nextchar, regexp,
spellfix, and wholenumber.
* Bug fix: Fix a potential database corruption bug in shared
cache mode when one database connection is closed while
another is in the middle of a write transaction. Ticket
e636a050b7
-------------------------------------------------------------------
Mon Aug 12 22:31:19 UTC 2013 - max@suse.com