]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Update the change log for the 2.4.8 release. (CVS 539)
authordrh <drh@noemail.net>
Sat, 20 Apr 2002 14:44:01 +0000 (14:44 +0000)
committerdrh <drh@noemail.net>
Sat, 20 Apr 2002 14:44:01 +0000 (14:44 +0000)
FossilOrigin-Name: c01bc2d19e8592fe3b1a5202926be649af96c783

manifest
manifest.uuid
www/changes.tcl

index 6b8e1adb8d0e4c470b21bc9d819b1c746d64a5ac..dccb62f0d9de712200631afd01ed1014c373871f 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Fix\sfor\sticket\s#1:\sImplement\sthe\sGLOB\sand\sLIKE\soperators\sas\sfunctions\sthat\ncan\sbe\soverridden.\s\sThis\sway,\sa\sdeveloper\scan\schange\sthe\sLIKE\soperator\sto\nbe\scase\ssensitive,\sfor\sexample.\s(CVS\s537)
-D 2002-04-20T14:24:42
+C Update\sthe\schange\slog\sfor\sthe\s2.4.8\srelease.\s(CVS\s539)
+D 2002-04-20T14:44:01
 F Makefile.in 50f1b3351df109b5774771350d8c1b8d3640130d
 F Makefile.template 89e373b2dad0321df00400fa968dc14b61a03296
 F README a4c0ba11354ef6ba0776b400d057c59da47a4cc0
@@ -116,7 +116,7 @@ F www/arch.fig d5f9752a4dbf242e9cfffffd3f5762b6c63b3bcf
 F www/arch.png 82ef36db1143828a7abc88b1e308a5f55d4336f4
 F www/arch.tcl 72a0c80e9054cc7025a50928d28d9c75c02c2b8b
 F www/c_interface.tcl 79f63ffa8c6e7adb9e3449ff325d093cfb0ce3e3
-F www/changes.tcl 4083f03195f0ae36411e095a2d18e5fb4a3c40d9
+F www/changes.tcl f2099632da4957a24de356cbf6f800de6ba2fc28
 F www/conflict.tcl 81dd21f9a679e60aae049e9dd8ab53d59570cda2
 F www/crosscompile.tcl 3622ebbe518927a3854a12de51344673eb2dd060
 F www/download.tcl 29aa6679ca29621d10613f60ebbbda18f4b91c49
@@ -131,7 +131,7 @@ F www/speed.tcl da8afcc1d3ccc5696cfb388a68982bc3d9f7f00f
 F www/sqlite.tcl 8b5884354cb615049aed83039f8dfe1552a44279
 F www/tclsqlite.tcl 1db15abeb446aad0caf0b95b8b9579720e4ea331
 F www/vdbe.tcl 2013852c27a02a091d39a766bc87cff329f21218
-P ca4abf3fe1f0e66802f9f98a20e0c8b82a6459aa
-R 296e96183752df57d48880aeba4ee595
+P 51572bf71774d7631c7083be90b806e621bc9bee
+R c985aee663734079903708a52d4ca252
 U drh
-Z 1714d41230ea0b8c518108a22a7c1e16
+Z e77b13e719a643f47f4dab2d0080ff50
index 359ebe3d9784ddc7f203e62ac1a4705dd947aabf..9bed69241be24ddedc1f3e4e1d23e329ed08ddaa 100644 (file)
@@ -1 +1 @@
-51572bf71774d7631c7083be90b806e621bc9bee
\ No newline at end of file
+c01bc2d19e8592fe3b1a5202926be649af96c783
\ No newline at end of file
index 5f3f7a689c03520905b493a8e5dda763560a5f2d..56efdd7cf569aca3cafb072cf039abc9e6abc6c6 100644 (file)
@@ -25,11 +25,27 @@ proc chng {date desc} {
   puts "<DD><P><UL>$desc</UL></P></DD>"
 }
 
+chng {2002 Apr 20 (2.4.8)} {
+<li>Make sure VIEWs are created after their corresponding TABLEs in the
+    output of the <b>.dump</b> command in the shell.</li>
+<li>Speed improvements: Do not do synchronous updates on TEMP tables.</li>
+<li>Many improvements and enhancements to the shell.</li>
+<li>Make the GLOB and LIKE operators functions that can be overridden
+    by a programmer.  This allows, for example, the LIKE operator to
+    be changed to be case sensitive.</li>
+}
+
 chng {2002 Apr 06 (2.4.7)} {
 <li>Add the ability to put TABLE.* in the column list of a
     SELECT statement.</li>
 <li>Permit SELECT statements without a FROM clause.</li>
 <li>Added the <b>last_insert_rowid()</b> SQL function.</li>
+<li>Do not count rows where the IGNORE conflict resultion occurs in
+    the row count.</li>
+<li>Make sure functions expressions in the VALUES clause of an INSERT
+    are correct.</li>
+<li>Added the <b>sqlite_changes()</b> API function to return the number
+    of row that changed in the most recent operation.</li>
 }
 
 chng {2002 Apr 02 (2.4.6)} {