Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Bump the version number to 2.7.2. (CVS 755) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
a164528e8c6df3569ab178a3b737744d |
User & Date: | drh 2002-09-25 19:26:59.000 |
Context
2002-09-25
| ||
19:50 | Version 2.7.2 (CVS 756) (check-in: 59ba43449a user: drh tags: trunk) | |
19:26 | Bump the version number to 2.7.2. (CVS 755) (check-in: a164528e8c user: drh tags: trunk) | |
19:04 | Bug fix: When multiple SQL statements were passed into a single sqlite_exec() call, execution speed would decrease for each statement executed because VDBE cursors were not being reused. Now the cursors are reused and execution time is linear. (CVS 754) (check-in: b0d27a377a user: drh tags: trunk) | |
Changes
Changes to VERSION.
|
| | | 1 | 2.7.2 |
Changes to www/changes.tcl.
︙ | ︙ | |||
20 21 22 23 24 25 26 27 28 29 30 31 32 33 | } proc chng {date desc} { puts "<DT><B>$date</B></DT>" puts "<DD><P><UL>$desc</UL></P></DD>" } chng {2002 Aug 31 (2.7.1)} { <li>Fix a bug in the ORDER BY logic that was introduced in version 2.7.0</li> <li>C-style comments are now accepted by the tokenizer.</li> <li>INSERT runs a little faster when the source is a SELECT statement.</li> } | > > > > > > > > > > > | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | } proc chng {date desc} { puts "<DT><B>$date</B></DT>" puts "<DD><P><UL>$desc</UL></P></DD>" } chng {2002 Sep 25 (2.7.2)} { <li>Prevent journal file overflows on huge transactions.</li> <li>Fix a memory leak that occurred when sqlite_open() failed.</li> <li>Honor the ORDER BY and LIMIT clause of a SELECT even if the result set is used for an INSERT.</li> <li>Do not put write locks on the file used to hold TEMP tables.</li> <li>Added documention on SELECT DISTINCT and on how SQLite handles NULLs.</li> <li>Fix a problem that was causing poor performance when many thousands of SQL statements were executed by a single sqlite_exec() call.</li> } chng {2002 Aug 31 (2.7.1)} { <li>Fix a bug in the ORDER BY logic that was introduced in version 2.7.0</li> <li>C-style comments are now accepted by the tokenizer.</li> <li>INSERT runs a little faster when the source is a SELECT statement.</li> } |
︙ | ︙ |