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

SQLite 3.9.0

OBS-URL: https://build.opensuse.org/request/show/339128
OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=133
This commit is contained in:
Martin Pluskal 2015-10-15 15:23:13 +00:00 committed by Git OBS Bridge
parent d044fdf4f1
commit f2aa50f699
6 changed files with 40 additions and 9 deletions

View File

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

View File

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

View File

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

3
sqlite-doc-3090000.zip Normal file
View File

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

View File

@ -1,3 +1,29 @@
-------------------------------------------------------------------
Thu Oct 15 14:35:51 UTC 2015 - astieger@suse.com
- SQLite 3.9.0
* Add json1 extension module
* The CREATE VIEW statement now accepts an optional list of
column names following the view name.
* Added support for indexes on expressions.
* Added support for table-valued functions in the FROM clause of a
SELECT statement.
* Added support for eponymous virtual tables.
* A VIEW may now reference undefined tables and functions when
initially created. Missing tables and functions are reported
when the VIEW is used in a query.
* Added the sqlite3_value_subtype() and sqlite3_result_subtype()
interfaced (used by the json1 extension).
* The query planner is now able to use partial indexes that
contain AND-connected terms in the WHERE clause.
* The sqlite3_analyzer utility is updated to report the depth of
each btree and to show the average fanout for indexes and
WITHOUT ROWID tables.
* Enhanced the dbstat virtual table so that it can be used as a
table-valued function where the argument is the schema to be
analyzed.
* sqlite3_memory_alarm() no-op.
-------------------------------------------------------------------
Fri Jul 31 11:44:40 UTC 2015 - mpluskal@suse.com

View File

@ -21,9 +21,9 @@
%define oname sqlite
Name: %pname
Version: 3.8.11.1
Version: 3.9.0
Release: 0
%define tarversion 3081101
%define tarversion 3090000
Summary: Embeddable SQL Database Engine
License: SUSE-Public-Domain
Group: Productivity/Databases/Servers
@ -124,7 +124,12 @@ rm -v sqlite-doc-%{tarversion}/releaselog/current.html
ln -sv `echo %{version} | sed "s/\./_/g"`.html sqlite-doc-%{tarversion}/releaselog/current.html
%build
export CFLAGS="%optflags -DSQLITE_ENABLE_COLUMN_METADATA -DSQLITE_ENABLE_FTS4 -DSQLITE_ENABLE_UNLOCK_NOTIFY"
export CFLAGS="%optflags \
-DSQLITE_ENABLE_COLUMN_METADATA \
-DSQLITE_ENABLE_FTS4 \
-DSQLITE_ENABLE_UNLOCK_NOTIFY \
-DSQLITE_ENABLE_JSON1 \
"
%configure --disable-static
make