SEARCH
NEW RPMS
DIRECTORIES
ABOUT
FAQ
VARIOUS
BLOG

 
 
Changelog for sqlite3-debuginfo-3.6.4-2.3.x86_64.rpm :
Tue Jan 13 13:00:00 2009 olhAATTsuse.de
- obsolete old -XXbit packages (bnc#437293)

Fri Oct 24 14:00:00 2008 maxAATTsuse.de
- Update to version 3.6.4:

* Fixes a missing symbol with the Tcl binding.

* Added the sqlite3_stmt_status() interface for performance
monitoring.

* Added the TRUNCATE option to PRAGMA journal_mode

* Performance enhancements to tree balancing logic in the B-Tree
layer.

* Added the source code and documentation for the genfkey
program for automatically generating triggers to enforce
foreign key constraints.

* The SQL language documentation is converted to use syntax
diagrams instead of BNF.

* Other minor bug fixes

Fri Sep 26 14:00:00 2008 maxAATTsuse.de
- Bugfix-Release 3.6.3:

* Fix for a bug in the SELECT DISTINCT logic that was introduced
by the prior versoin.

* Other minor bug fixes.

Wed Sep 10 14:00:00 2008 maxAATTsuse.de
- Update to version 3.6.2.
- This version contains rewrites of the page-cache subsystem and
the procedures for matching identifiers to table columns in SQL
statements. These changes are designed to better modularize the
code and make it more maintainable and reliable moving forward.
Nearly 5000 non-comment lines of core code (about 11.3%) have
changed from the previous release. Nevertheless, there should
be no application-visible changes, other than bug fixes.

Fri Jul 25 14:00:00 2008 maxAATTsuse.de
- Update to version 3.6.0:

* Modifications to the virtual file system interface to support a
wider range of embedded systems. See 35to36.html for additional
information.
*
*
* Potentially incompatible change
*
*
*

* The handling of IN and NOT IN operators that contain a NULL on
their right-hand side expression is brought into compliance with
the SQL standard and with other SQL database engines. This is a
bug fix, but as it has the potential to break legacy applications
that depend on the older buggy behavior, we mark that as a

*
*
* Potentially incompatible change
*
*
*

* The result column names generated for compound subqueries have
been simplified to show only the name of the column of the
original table and omit the table name. This makes SQLite
operate more like other SQL database engines.

* Added the sqlite3_config() interface for doing run-time
configuration of the entire SQLite library.

* Added the sqlite3_status() interface used for querying run-time
status information about the overall SQLite library and its
subsystems.

* Added the sqlite3_initialize() and sqlite3_shutdown() interfaces.

* The SQLITE_OPEN_NOMUTEX option was added to sqlite3_open_v2().

* Added the PRAGMA page_count command.

* Added the sqlite3_next_stmt() interface.

* Added a new R
*Tree virtual table
- Link libtclsqlite against the Tcl stubs library, so that it can be
used from tclkit.

Thu May 8 14:00:00 2008 maxAATTsuse.de
- Actually apply sqlite-strcasecmp.patch to fix the Tcl extension.
- Link the Tcl extension dynamically.

Wed May 7 14:00:00 2008 cooloAATTsuse.de
- provide sqlite-

Tue Apr 29 14:00:00 2008 cthielAATTsuse.de
- obsolete sqlite- via baselibs.conf

Mon Apr 28 14:00:00 2008 maxAATTsuse.de
- Avoid an unresolved symbol in the Tcl extension
(sqlite-strcasecmp.patch).
- Use upstream fixes for test failures caused by Tcl 8.5

Sun Apr 27 14:00:00 2008 cooloAATTsuse.de
- disable the test suite, it adds 5 hours to the build time

Thu Apr 10 14:00:00 2008 maxAATTsuse.de
- update to version 3.5.7. Changes include:

* Fix a bug in the register allocation for compound selects.

* Do not apply the flattening optimization if the outer query
is an aggregate and the inner query contains ORDER BY.

* Accept \"Z\" as the zulu timezone at the end of date strings.

* Fix a bug in the LIKE optimizer that occurs when the last
character before the first wildcard is an upper-case \"Z\"

* Added the \"bitvec\" object for keeping track of which pages
have been journalled. Improves speed and reduces memory
consumption, especially for large database files.

* Add the new sqlite3_result_error_code() API.

* Convert the underlying virtual machine to be a register-based
machine rather than a stack-based machine. The only
user-visible change is in the output of EXPLAIN.
- Fix build for Tcl 8.5.
- Don\'t --enable-releasemode anymore, because it recently started
putting the package version into the library name
(libsqlite3-3.5.7.so.0.8.6)

Thu Apr 10 14:00:00 2008 roAATTsuse.de
- added baselibs.conf file to build xxbit packages
for multilib support

Thu Apr 3 14:00:00 2008 maxAATTsuse.de
- Fixed the tcl subpackage and adapted it to the new Tcl file
system layout.

Thu Jan 10 13:00:00 2008 lruppAATTsuse.de
- split of libsqlite3-0 package (Shared Library Packaging Policy)
- rename sqlite to sqlite3

Tue Dec 18 13:00:00 2007 adrianAATTsuse.de
- update to version 3.5.4
From official changelog:

* Fix a critical bug in UPDATE or DELETE that occurs when an
OR REPLACE clause or a trigger causes rows in the same table to be
deleted as side effects. (See ticket #2832.) The most likely result
of this bug is a segmentation fault, though database corruption is
a possibility.

* Bring the processing of ORDER BY into compliance with the SQL
standard for case where a result alias and a table column name are
in conflict. Correct behavior is to prefer the result alias. Older
versions of SQLite incorrectly picked the table column. (See ticket #2822.)

* The VACUUM command preserves the setting of the legacy_file_format
pragma. (Ticket #2804.)

* Productize and officially support the group_concat() SQL function.

* Better optimization of some IN operator expressions.

* Add the ability to change the auto_vacuum status of a database by
setting the auto_vaccum pragma and VACUUMing the database.

* Prefix search in FTS3 is much more efficient.

* Relax the SQL statement length restriction in the CLI so that the
\".dump\" output of databases with very large BLOBs and strings can
be played back to recreate the database.

* Other small bug fixes and optimizations.

Fri Nov 30 13:00:00 2007 adrianAATTsuse.de
- update to version 3.5.3

* documentation has been removed from tar ball.
From official changelog:

* Fix a long-standing bug in INSERT INTO ... SELECT ... statements
where the SELECT is compound.

* Fix a long-standing bug in RAISE(IGNORE) as used in BEFORE triggers.

* Fixed the operator precedence for the ~ operator.

* Allow collating sequence names to be quoted.

* Modify the TCL interface to use sqlite3_prepare_v2().

* Fix multiple bugs that can occur following a malloc() failure.

* sqlite3_step() returns SQLITE_MISUSE instead of crashing when
called with a NULL parameter.

* FTS3 now uses the SQLite memory allocator exclusively. The FTS3
amalgamation can now be appended to the SQLite amalgamation to
generate a super-amalgamation containing both.

* The DISTINCT keyword now will sometimes use an INDEX if an
appropriate index is available and the optimizer thinks its use
might be advantageous.

Mon Nov 5 13:00:00 2007 adrianAATTsuse.de
- update to version 3.5.2
From the official changelog:

* The OS interface layer and the memory allocation subsystems in
SQLite have been reimplemented. The published API is largely
unchanged but the (unpublished) OS interface has been modified
extensively. Applications that implement their own OS interface
will require modification.

* This is a large change. Approximately 10% of the source code was
modified.

* Fix a long-standing bug that might cause database corruption if
a disk-full error occurs in the middle of a transaction and that
transaction is not rolled back.

Thu Oct 18 14:00:00 2007 sbrabecAATTsuse.cz
- Build with column metadata support, as required by libgda.

Mon Aug 13 14:00:00 2007 adrianAATTsuse.de
- call %post/%pre ldconfig again (#298292)

Mon Aug 6 14:00:00 2007 adrianAATTsuse.de
- update to version 3.4.1

* Bugfix release to solve database corruption

* remove static fts2 plugin patch, it is broken and get not used

* Changelog from the release:
- Fix a bug in VACUUM that can lead to database corruption if two
processes are connected to the database at the same time and one
VACUUMs then the other then modifies the database.
- The expression \"+column\" is now considered the same as \"column\" when
computing the collating sequence to use on the expression.
- In the TCL language interface, \"AATTvariable\" instead of \"$variable\" always
binds as a blob.
- Added PRAGMA freelist_count for determining the current size of the
freelist.
- The PRAGMA auto_vacuum=incremental setting is now persistent.
- Add FD_CLOEXEC to all open files under unix.
- Fix a bug in the min()/max() optimization when applied to descending
indices.
- Make sure the TCL language interface works correctly with 64-bit integers
on 64-bit machines.
- Allow the value -9223372036854775808 as an integer literal in SQL
statements.
- Add the capability of \"hidden\" columns in virtual tables.
- Use the macro SQLITE_PRIVATE (defaulting to \"static\") on all internal
functions in the amalgamation.
- Add pluggable tokenizers and ICU tokenization support to FTS2
- Other minor bug fixes and documentation enhancements

Tue Jun 26 14:00:00 2007 adrianAATTsuse.de
- update to version 3.4.0
WARNING: this version might cause incompatibilities due to new
limits. These limits could be raised again, if we run in
trouble, but let\'s follow upstream for now.

* Two important bugfixes for database corruption.

* New features like incremental BLOB I/O and incremental vacuum

Fri Apr 27 14:00:00 2007 adrianAATTsuse.de
- update to version 3.3.17

* bug fix in forwards-compatibility logic of SQLite

Thu Apr 19 14:00:00 2007 adrianAATTsuse.de
- update to version 3.3.16

* speed improvements were not enabled in .15 by accident

Mon Apr 16 14:00:00 2007 adrianAATTsuse.de
- update to version 3.3.15

* speed improvements

* new exclusive locking mode
- switch to -O3 now
- general spec file clean up

Mon Feb 19 13:00:00 2007 adrianAATTsuse.de
- update to version 3.3.13
from the changelog:

* Add a \"fragmentation\" measurement in the output of sqlite3_analyzer.

* Add the COLLATE operator used to explicitly set the collating
sequence used by an expression. This feature is considered
experimental pending additional testing.

* Allow up to 64 tables in a join - the old limit was 32.

* Added two new experimental functions: randomBlob() and hex().
Their intended use is to facilitate generating UUIDs.

* Fix a problem where PRAGMA count_changes was causing incorrect
results for updates on tables with triggers

* Fix a bug in the ORDER BY clause optimizer for joins where
the left-most table in the join is constrained by a UNIQUE index.

* Fixed a bug in the \"copy\" method of the TCL interface.

* Bug fixes in fts1 and fts2 modules.

Mon Feb 12 13:00:00 2007 dmuellerAATTsuse.de
- fix library dependencies after loadable extensions were enabled

Tue Feb 6 13:00:00 2007 dmacvicarAATTsuse.de
- Enable support for loadable extensions

Mon Feb 5 13:00:00 2007 maxAATTsuse.de
- Enable the fts1 and fts2 modules and link them in statically.

Wed Jan 31 13:00:00 2007 adrianAATTsuse.de
- update to version 3.3.12

* further bugfixes, esp. for bugs introduced in 3.3.9

Thu Jan 11 13:00:00 2007 adrianAATTsuse.de
- update to version 3.3.10

* pure bug fix release

Tue Jan 9 13:00:00 2007 adrianAATTsuse.de
- update to version 3.3.9

* fixes database corruption \"under obscure and difficult to
reproduce circumstances\".

* new sqlite3_prepare v2() api (new header file)

Mon Nov 6 13:00:00 2006 adrianAATTsuse.de
- fix permissions of installed man page

Mon Oct 16 14:00:00 2006 adrianAATTsuse.de
- update to version 3.3.8

* full-text search using the FTS1 module

* minor bufixes
- two testcases got disabled, because they fail.
We need to review the reason for that before shipping this package,
but this package builds again at least.

Wed Aug 23 14:00:00 2006 adrianAATTsuse.de
- update to version 3.3.7

* support for loadable extensions and virtual tables

* minor bugfixes


 
ICM