- New version: 3.8.3:
* Added support for common table expressions and the WITH clause. * Added the printf() SQL function. * Added SQLITE_DETERMINISTIC as an optional bit in the 4th argument to the sqlite3_create_function() and related interfaces, providing applications with the ability to create new functions that can be factored out of inner loops when they have constant arguments. * Add SQLITE_READONLY_DBMOVED error code, returned at the beginning of a transaction, to indicate that the underlying database file has been renamed or moved out from under SQLite. * Allow arbitrary expressions, including function calls and subqueries, in the filename argument to ATTACH. * Allow a VALUES clause to be used anywhere a SELECT statement is valid. * Reseed the PRNG used by sqlite3_randomness(N,P) when invoked with N==0. Automatically reseed after a fork() on unix. * Enhance the spellfix1 virtual table so that it can search efficiently by rowid. * Performance enhancements. * Improvements to the comments in the VDBE byte-code display when running EXPLAIN. * Add the "%token_class" directive to LEMON parser generator and use it to simplify the grammar. * Change the LEMON source code to avoid calling C-library functions that OpenBSD considers dangerous. (Ex: sprintf). * Bug fix: In the command-line shell CSV import feature, do not end a field when an escaped double-quote occurs at the end of a CRLN line. OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=88
This commit is contained in:
parent
033189079a
commit
7890cc49c2
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:a0851d06092c8208e4dd947f569f40db476b472b22e3e10e2f52f3c5e94fef92
|
|
||||||
size 1917056
|
|
3
sqlite-autoconf-3080300.tar.gz
Normal file
3
sqlite-autoconf-3080300.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:dabe38cf6732a9dfd57e9a2d2629dfb12ea3f2bf8948987f91318d01e6f72a26
|
||||||
|
size 1923594
|
@ -1,3 +1,37 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 4 14:55:29 UTC 2014 - max@suse.com
|
||||||
|
|
||||||
|
- New version: 3.8.3:
|
||||||
|
* Added support for common table expressions and the WITH
|
||||||
|
clause.
|
||||||
|
* Added the printf() SQL function.
|
||||||
|
* Added SQLITE_DETERMINISTIC as an optional bit in the 4th
|
||||||
|
argument to the sqlite3_create_function() and related
|
||||||
|
interfaces, providing applications with the ability to create
|
||||||
|
new functions that can be factored out of inner loops when
|
||||||
|
they have constant arguments.
|
||||||
|
* Add SQLITE_READONLY_DBMOVED error code, returned at the
|
||||||
|
beginning of a transaction, to indicate that the underlying
|
||||||
|
database file has been renamed or moved out from under SQLite.
|
||||||
|
* Allow arbitrary expressions, including function calls and
|
||||||
|
subqueries, in the filename argument to ATTACH.
|
||||||
|
* Allow a VALUES clause to be used anywhere a SELECT statement
|
||||||
|
is valid.
|
||||||
|
* Reseed the PRNG used by sqlite3_randomness(N,P) when invoked
|
||||||
|
with N==0. Automatically reseed after a fork() on unix.
|
||||||
|
* Enhance the spellfix1 virtual table so that it can search
|
||||||
|
efficiently by rowid.
|
||||||
|
* Performance enhancements.
|
||||||
|
* Improvements to the comments in the VDBE byte-code display
|
||||||
|
when running EXPLAIN.
|
||||||
|
* Add the "%token_class" directive to LEMON parser generator and
|
||||||
|
use it to simplify the grammar.
|
||||||
|
* Change the LEMON source code to avoid calling C-library
|
||||||
|
functions that OpenBSD considers dangerous. (Ex: sprintf).
|
||||||
|
* Bug fix: In the command-line shell CSV import feature, do not
|
||||||
|
end a field when an escaped double-quote occurs at the end of
|
||||||
|
a CRLN line.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jan 7 17:07:55 UTC 2014 - max@suse.com
|
Tue Jan 7 17:07:55 UTC 2014 - max@suse.com
|
||||||
|
|
||||||
|
@ -21,9 +21,9 @@
|
|||||||
%define oname sqlite
|
%define oname sqlite
|
||||||
|
|
||||||
Name: %pname
|
Name: %pname
|
||||||
Version: 3.8.2
|
Version: 3.8.3
|
||||||
Release: 0
|
Release: 0
|
||||||
%define tarversion 3080200
|
%define tarversion 3080300
|
||||||
Summary: Embeddable SQL Database Engine
|
Summary: Embeddable SQL Database Engine
|
||||||
License: SUSE-Public-Domain
|
License: SUSE-Public-Domain
|
||||||
Group: Productivity/Databases/Servers
|
Group: Productivity/Databases/Servers
|
||||||
|
Loading…
Reference in New Issue
Block a user