From d042ddb31b3fef8f463fb71c94eb76a95a49e7eb Mon Sep 17 00:00:00 2001 From: drh Date: Wed, 25 Sep 2002 19:26:59 +0000 Subject: [PATCH] Bump the version number to 2.7.2. (CVS 755) FossilOrigin-Name: a164528e8c6df3569ab178a3b737744dcccb64e7 --- VERSION | 2 +- manifest | 14 +++++++------- manifest.uuid | 2 +- www/changes.tcl | 11 +++++++++++ 4 files changed, 20 insertions(+), 9 deletions(-) diff --git a/VERSION b/VERSION index 860487ca19..37c2961c24 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.7.1 +2.7.2 diff --git a/manifest b/manifest index eac20de18e..147b8302af 100644 --- a/manifest +++ b/manifest @@ -1,9 +1,9 @@ -C Bug\sfix:\sWhen\smultiple\sSQL\sstatements\swere\spassed\sinto\sa\ssingle\ssqlite_exec()\scall,\sexecution\sspeed\swould\sdecrease\sfor\seach\sstatement\sexecuted\sbecause\sVDBE\scursors\swere\snot\sbeing\sreused.\s\sNow\sthe\scursors\sare\sreused\sand\sexecution\stime\sis\slinear.\s(CVS\s754) -D 2002-09-25T19:04:07 +C Bump\sthe\sversion\snumber\sto\s2.7.2.\s(CVS\s755) +D 2002-09-25T19:26:59 F Makefile.in d6c9a85c2a5e696843201d090dcf8bf2f8716f2a F Makefile.linux-gcc b86a99c493a5bfb402d1d9178dcdc4bd4b32f906 F README f1de682fbbd94899d50aca13d387d1b3fd3be2dd -F VERSION 32d9c5fea1bc2db8fb2e5e460a166301d0c1a901 +F VERSION 7cc70240794db6c8f3c6ef8867090c25d8b442bd F aclocal.m4 11faa843caa38fd451bc6aeb43e248d1723a269d F config.guess f38b1e93d1e0fa6f5a6913e9e7b12774b9232588 F config.sub f14b07d544ca26b5d698259045136b783e18fc7f @@ -129,7 +129,7 @@ F www/arch.png 82ef36db1143828a7abc88b1e308a5f55d4336f4 F www/arch.tcl 679a0c48817f71bc91d5911ef386e5ef35d4f178 F www/audit.tcl 90e09d580f79c7efec0c7d6f447b7ec5c2dce5c0 F www/c_interface.tcl e76c9fd609326c34cd45cd040b508b0e21908800 -F www/changes.tcl 8c14e76e382baae613314bd24821ea986fce3abe +F www/changes.tcl 5074fcf9ad6186f1ca48cda96081a465e8d41f52 F www/conflict.tcl 81dd21f9a679e60aae049e9dd8ab53d59570cda2 F www/crosscompile.tcl 3622ebbe518927a3854a12de51344673eb2dd060 F www/datatypes.tcl 0cb28565580554fa7e03e8fcb303e87ce57757ae @@ -149,7 +149,7 @@ F www/speed.tcl a20a792738475b68756ea7a19321600f23d1d803 F www/sqlite.tcl ae3dcfb077e53833b59d4fcc94d8a12c50a44098 F www/tclsqlite.tcl 1db15abeb446aad0caf0b95b8b9579720e4ea331 F www/vdbe.tcl 2013852c27a02a091d39a766bc87cff329f21218 -P 14ebe30bf5937effdc388e23e998ba1a34fb0a29 -R 177fd2a86ea7e1243cec22f56d3bf48e +P b0d27a377a9f6134f81108fe45c8c868ab4d4411 +R 6b3b49333db1fe81ae49602c8806a88b U drh -Z f9ea9206896cc0d3e37a6baef7c96e75 +Z c182cb4ceec14be26b636f8139424645 diff --git a/manifest.uuid b/manifest.uuid index b8d164f387..b6d1b4b0ef 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -b0d27a377a9f6134f81108fe45c8c868ab4d4411 \ No newline at end of file +a164528e8c6df3569ab178a3b737744dcccb64e7 \ No newline at end of file diff --git a/www/changes.tcl b/www/changes.tcl index b1289daaa6..8d38641003 100644 --- a/www/changes.tcl +++ b/www/changes.tcl @@ -25,6 +25,17 @@ proc chng {date desc} { puts "

" } +chng {2002 Sep 25 (2.7.2)} { +
  • Prevent journal file overflows on huge transactions.
  • +
  • Fix a memory leak that occurred when sqlite_open() failed.
  • +
  • Honor the ORDER BY and LIMIT clause of a SELECT even if the + result set is used for an INSERT.
  • +
  • Do not put write locks on the file used to hold TEMP tables.
  • +
  • Added documention on SELECT DISTINCT and on how SQLite handles NULLs.
  • +
  • Fix a problem that was causing poor performance when many thousands + of SQL statements were executed by a single sqlite_exec() call.
  • +} + chng {2002 Aug 31 (2.7.1)} {
  • Fix a bug in the ORDER BY logic that was introduced in version 2.7.0
  • C-style comments are now accepted by the tokenizer.