Accepting request 132564 from server:database

- New version 3.7.14:

OBS-URL: https://build.opensuse.org/request/show/132564
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/sqlite3?expand=0&rev=46
This commit is contained in:
Stephan Kulow 2012-09-10 13:21:17 +00:00 committed by Git OBS Bridge
commit ee604c04cb
4 changed files with 53 additions and 6 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b4ce93881cb88e7d1d0f2ad50a206b600163b40fea6df9d0749ad152aaebf845
size 1831193

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:de6c01d9fabf4d10733b1920d9a3143634ed516b90f4759b3b5b79857a39b724
size 1832194

View File

@ -1,3 +1,50 @@
-------------------------------------------------------------------
Tue Sep 4 14:21:55 UTC 2012 - mmeister@suse.com
- New version 3.7.14:
* Ensure that floating point values are preserved exactly when
reconstructing a database from the output of the ".dump"
command of the command-line shell.
* Added the sqlite3_close_v2() interface.
* Updated the command-line shell so that it can be built using
SQLITE_OMIT_FLOATING_POINT and SQLITE_OMIT_AUTOINIT.
* Enhancements to PRAGMA integrity_check and PRAGMA quick_check
so that they can optionally check just a single attached
database install of all attached databases.
* Enhancements to WAL mode processing that ensure that at least
one valid read-mark is available at all times, so that
read-only processes can always read the database.
* Performance enhancements in the sorter used by ORDER BY and CREATE INDEX.
* Added the SQLITE_DISABLE_FTS4_DEFERRED compile-time option.
* Better handling of aggregate queries where the aggregate
functions are contained within subqueries.
* Enhance the query planner so that it will try to use a
covering index on queries that make use of or optimization.
-------------------------------------------------------------------
Fri Aug 31 15:41:54 UTC 2012 - max@suse.com
- New version 3.7.13:
* In-memory databases that are specified using URI filenames are
allowed to use shared cache, so that the same in-memory
database can be accessed from multiple database connections.
* Recognize and use the mode=memory query parameter in URI
filenames.
* Avoid resetting the schema of shared cache connections when
any one connection closes. Instead, wait for the last
connection to close before reseting the schema.
* In the RTREE extension, when rounding 64-bit floating point
numbers to 32-bit for storage, always round in a direction
that causes the bounding box to get larger.
* Adjust the unix driver to avoid unnecessary calls to fchown().
* Add interfaces sqlite3_quota_ferror() and
sqlite3_quota_file_available() to the test_quota.c module.
* The sqlite3_create_module() and sqlite3_create_module_v2()
interfaces return SQLITE_MISUSE on any attempt to overload or
replace a virtual table module. The destructor is always
called in this case, in accordance with historical and current
documentation.
-------------------------------------------------------------------
Thu May 24 07:39:26 UTC 2012 - max@suse.com

View File

@ -17,9 +17,9 @@
Name: sqlite3
Version: 3.7.12.1
Version: 3.7.14
Release: 0
%define tarversion 3071201
%define tarversion 3071400
Summary: Embeddable SQL Database Engine
License: SUSE-Public-Domain
Group: Productivity/Databases/Servers
@ -114,7 +114,7 @@ database access without running a separate RDBMS process.
%setup -q -n sqlite-autoconf-%tarversion
%build
export CFLAGS="-DSQLITE_ENABLE_COLUMN_METADATA -DSQLITE_USE_URI"
export CFLAGS="-DSQLITE_ENABLE_COLUMN_METADATA -DSQLITE_ENABLE_FTS4"
%configure --disable-static
make
cd tea