]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Minor optimizations. (CVS 4955)
authordrh <drh@noemail.net>
Wed, 2 Apr 2008 18:33:07 +0000 (18:33 +0000)
committerdrh <drh@noemail.net>
Wed, 2 Apr 2008 18:33:07 +0000 (18:33 +0000)
FossilOrigin-Name: e8529455803e0dab167f4faba5846fa1eafef741

manifest
manifest.uuid
src/btree.c
src/hash.c

index b4af9adb510ddd7855290629bf8120f16693a106..145a699b0de8767732a940ce0a7738bcca1f591d 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Simplifications\sto\sthe\sLockTable\sopcode.\s(CVS\s4954)
-D 2008-04-02T16:29:31
+C Minor\soptimizations.\s(CVS\s4955)
+D 2008-04-02T18:33:08
 F Makefile.arm-wince-mingw32ce-gcc ac5f7b2cef0cd850d6f755ba6ee4ab961b1fadf7
 F Makefile.in b861627d91df5ee422c54237aa38296954dc0151
 F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
@@ -86,7 +86,7 @@ F src/attach.c bdc75e759ca25a16f4dc7fbdbc6d37ad2561bb24
 F src/auth.c c8b2ab5c8bad4bd90ed7c294694f48269162c627
 F src/bitvec.c 49817d442e51e4123585f3cf3c2afc293a3c91e2
 F src/btmutex.c 483ced3c52205b04b97df69161fadbf87f4f1ea2
-F src/btree.c 00cc20be5ca9aabf36a6578d3945294eba2aea95
+F src/btree.c 680c357b178146dd37910f42f9e6e8a2a7b1e61d
 F src/btree.h c66cb17c6fffa84a88926dbef173bab4ae692fd4
 F src/btreeInt.h 8a2718652ed9413dc6acbb02a5c5a23a35a6e983
 F src/build.c 5d36a6041202a1f3a8b2eee3a631cbce74e5f696
@@ -98,7 +98,7 @@ F src/experimental.c 1b2d1a6cd62ecc39610e97670332ca073c50792b
 F src/expr.c acc695135dc7f7a3080139ae48c16b92d1fa54fb
 F src/fault.c 83057e86815d473e526f7df0b0108dfdd022ff23
 F src/func.c c9e8c7ff4c45027edee89bde7adbf86a3a3b2afe
-F src/hash.c 53655c312280211444bfe23af6490a460aec2980
+F src/hash.c 522a8f5a23cf18fe5845afee7263c5be76c25ca2
 F src/hash.h 031cd9f915aff27e12262cb9eb570ac1b8326b53
 F src/insert.c 6974a1d02f2dcd616d00eef4996d4872495fad0f
 F src/journal.c 807bed7a158979ac8d63953e1774e8d85bff65e2
@@ -621,7 +621,7 @@ F www/tclsqlite.tcl 8be95ee6dba05eabcd27a9d91331c803f2ce2130
 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
 F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b
 F www/whentouse.tcl fc46eae081251c3c181bd79c5faef8195d7991a5
-P 846f9739d3e288dc81e40f5bfab046bd80bb22b2
-R b5b81be90c9f85b4a5bfa0dee7823251
+P 66c5d715bbb732b0861a8a6f994cb4a8f259f2f8
+R dd2bdb1a317a2780511925890196cf96
 U drh
-Z 7b266a6dff6de99012c6173c0f15f9bd
+Z c96cbc0506d0e982c38b7e2dc6d52960
index 55666cb651be614c7003a1666e16bc24a2f008c0..5bc7a928002216f40028ebfd1ec3468c4f6a2c0b 100644 (file)
@@ -1 +1 @@
-66c5d715bbb732b0861a8a6f994cb4a8f259f2f8
\ No newline at end of file
+e8529455803e0dab167f4faba5846fa1eafef741
\ No newline at end of file
index 52ff5789d0a7f4425e4db525596361b85df98202..8bac8429f2dbf846a6d474f7f3796cc5a6c1ee38 100644 (file)
@@ -9,7 +9,7 @@
 **    May you share freely, never taking more than you give.
 **
 *************************************************************************
-** $Id: btree.c,v 1.449 2008/04/02 16:29:31 drh Exp $
+** $Id: btree.c,v 1.450 2008/04/02 18:33:08 drh Exp $
 **
 ** This file implements a external (disk-based) database using BTrees.
 ** See the header comment on "btreeInt.h" for additional information.
@@ -3671,12 +3671,13 @@ int sqlite3BtreeMoveto(
           pCell += getVarint32(pCell, &dummy);
         }
         getVarint(pCell, (u64*)&nCellKey);
-        if( nCellKey<nKey ){
+        if( nCellKey==nKey ){
+          c = 0;
+        }else if( nCellKey<nKey ){
           c = -1;
-        }else if( nCellKey>nKey ){
-          c = +1;
         }else{
-          c = 0;
+          assert( nCellKey>nKey );
+          c = +1;
         }
       }else{
         int available;
index 0664f6dbcfe7a0e8034fd345b8c77dae372eb642..8b354352703db2337a29ca0a617bec753d243915 100644 (file)
@@ -12,7 +12,7 @@
 ** This is the implementation of generic hash-tables
 ** used in SQLite.
 **
-** $Id: hash.c,v 1.26 2008/02/18 22:24:58 drh Exp $
+** $Id: hash.c,v 1.27 2008/04/02 18:33:08 drh Exp $
 */
 #include "sqliteInt.h"
 #include <assert.h>
@@ -53,7 +53,7 @@ void sqlite3HashClear(Hash *pH){
   assert( pH!=0 );
   elem = pH->first;
   pH->first = 0;
-  if( pH->ht ) sqlite3_free(pH->ht);
+  sqlite3_free(pH->ht);
   pH->ht = 0;
   pH->htsize = 0;
   while( elem ){
@@ -238,7 +238,7 @@ static void rehash(Hash *pH, int new_size){
   sqlite3FaultBenign(SQLITE_FAULTINJECTOR_MALLOC, 0);
 
   if( new_ht==0 ) return;
-  if( pH->ht ) sqlite3_free(pH->ht);
+  sqlite3_free(pH->ht);
   pH->ht = new_ht;
   pH->htsize = new_size;
   xHash = hashFunction(pH->keyClass);