1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

Preparing for the release of version 3.3.5. (CVS 3165)

FossilOrigin-Name: 159fb92bd5290098986709f5d9ff8183e9059d53
This commit is contained in:
drh
2006-04-05 12:15:11 +00:00
parent 6103fe972e
commit 9100726972
5 changed files with 37 additions and 11 deletions

View File

@ -25,6 +25,26 @@ proc chng {date desc} {
puts "<DD><P><UL>$desc</UL></P></DD>"
}
chng {2006 April 5 (3.3.5)} {
<li>CHECK constraints use conflict resolution algorithms correctly.</li>
<li>The SUM() function throws an error on integer overflow.</li>
<li>Choose the column names in a compound query from the left-most SELECT
instead of the right-most.</li>
<li>The sqlite3_create_collation honors the SQLITE_UTF16_ALIGNED flag.</li>
<li>SQLITE_SECURE_DELETE compile-time option always overwrites deleted
data with zeros.</li>
<li>Detect integer overflow in abs().</li>
<li>The random() function provides 64 bits of randomness instead of
only 32 bits.</li>
<li>Parser detects and reports automaton stack overflow.</li>
<li>Change the round() function to return REAL instead of TEXT.</li>
<li>All WHERE clause terms on the left table of a LEFT OUTER JOIN to
contain aggregate subqueries.</li>
<li>Skip over leading spaces in text to numeric conversions.</li>
<li>Various minor bug and documentation typo fixes and
performance enhancements.</li>
}
chng {2006 February 11 (3.3.4)} {
<li>Fix a blunder in the Unix mutex implementation that can lead to
deadlock on multithreaded systems.</li>