]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Comment fixes. No changes to the underlying code. (CVS 2598)
authordrh <drh@noemail.net>
Thu, 18 Aug 2005 18:15:05 +0000 (18:15 +0000)
committerdrh <drh@noemail.net>
Thu, 18 Aug 2005 18:15:05 +0000 (18:15 +0000)
FossilOrigin-Name: b865e243ee772f009dbf466d69525f2cdef78c0e

manifest
manifest.uuid
src/build.c
src/vdbeaux.c

index a150a55e4bf58c3fd16c9c4b93516b0e030cfe88..f63e319a0a154dfbfca678d2d70f0a0e20ba6ce2 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Fix\stypo\sin\sdocumentation.\s(CVS\s2597)
-D 2005-08-16T14:44:49
+C Comment\sfixes.\s\sNo\schanges\sto\sthe\sunderlying\scode.\s(CVS\s2598)
+D 2005-08-18T18:15:06
 F Makefile.in b109ddb46a5550d0732dcd6caca01c123f6d5cdd
 F Makefile.linux-gcc 06be33b2a9ad4f005a5f42b22c4a19dab3cbb5c7
 F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
@@ -34,7 +34,7 @@ F src/attach.c 3615dbe960cbee4aa5ea300b8a213dad36527b0f
 F src/auth.c 31e2304bef67f44d635655f44234387ea7d21454
 F src/btree.c 667227e4375d8bf6abd748cf6bad7a2004bf5d87
 F src/btree.h 41a71ce027db9ddee72cb43df2316bbe3a1d92af
-F src/build.c 6481b728788829e57d2ad6f765cb2dc82ced9d8e
+F src/build.c bc7b4791f2eb3c5e1671f9df83902030e3bcb995
 F src/callback.c 9a1162c8f9dae9fad6d548339669aacb5f6cf76b
 F src/complete.c 4de937dfdd4c79a501772ab2035b26082f337a79
 F src/date.c 7444b0900a28da77e57e3337a636873cff0ae940
@@ -84,7 +84,7 @@ F src/vdbe.c 69f33e22c7d0a64b23fbb69e6da95a1bb6869032
 F src/vdbe.h 68e80f65658e7fd85561721f617bdebf8bb84b59
 F src/vdbeInt.h 9be9a6c43d38124bd03cc5cf05715605b1789fd9
 F src/vdbeapi.c dc5b78cabf8d6e33318bd3d4ed25307d2aadce9a
-F src/vdbeaux.c c7ea38ba42659eeaea091b1cda29989c1e82fa43
+F src/vdbeaux.c 6b2e54ac0b8ea95411029efff5404eb68d12d28c
 F src/vdbefifo.c b8805850afe13b43f1de78d58088cb5d66f88e1e
 F src/vdbemem.c 89154caae3b8d4d0397e1235390fc4ff8aba4233
 F src/where.c de4b36842d64b6d12fc1896407d526bf88b67d22
@@ -293,7 +293,7 @@ F www/tclsqlite.tcl 3df553505b6efcad08f91e9b975deb2e6c9bb955
 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
 F www/version3.tcl a99cf5f6d8bd4d5537584a2b342f0fb9fa601d8b
 F www/whentouse.tcl 97e2b5cd296f7d8057e11f44427dea8a4c2db513
-P 3a7918a66bf98368c2520f94e505a21a1df3383c
-R 63a9f5eb3244f381a286f49ebce12b96
+P 32efcd24612908516fb5bc58ab3fe4790586a220
+R ced5bebb2351f8c1207ade49d6285b42
 U drh
-Z d74c0b5a2a52e5b4808cc3ee0fe0cf28
+Z e23c5432bca86a11aa997bf8f8f76646
index 16ef4d2e3458d4a87b3909074528865f8786a6dd..f5d587e851c8eb45de0d39c87a98e80a59734648 100644 (file)
@@ -1 +1 @@
-32efcd24612908516fb5bc58ab3fe4790586a220
\ No newline at end of file
+b865e243ee772f009dbf466d69525f2cdef78c0e
\ No newline at end of file
index 18830f378cf75014bf4a3a7b1b104948d3725145..197ce9cb6ba40ed7c250646a9a41761c6bb95112 100644 (file)
@@ -22,7 +22,7 @@
 **     COMMIT
 **     ROLLBACK
 **
-** $Id: build.c,v 1.340 2005/08/14 01:34:20 drh Exp $
+** $Id: build.c,v 1.341 2005/08/18 18:15:06 drh Exp $
 */
 #include "sqliteInt.h"
 #include <ctype.h>
@@ -948,16 +948,6 @@ void sqlite3AddColumnType(Parse *pParse, Token *pType){
   if( i<0 ) return;
   pCol = &p->aCol[i];
   assert( pCol->zType==0 );
-#if 0
-  z = pCol->zType = sqliteMallocRaw(n+1);
-  if( z==0 ) return;
-  for(i=j=0; i<n; i++){
-    int c = zIn[i];
-    if( isspace(c) ) continue;
-    z[j++] = c;
-  }
-  z[j] = 0;
-#endif
   pCol->zType = sqlite3NameFromToken(pType);
   pCol->affinity = sqlite3AffinityType(pType);
 }
@@ -1316,13 +1306,11 @@ void sqlite3EndTable(
     */
     if( p->pSelect==0 ){
       /* A regular table */
-      /* sqlite3VdbeAddOp(v, OP_CreateTable, p->iDb, 0); */
       zType = "table";
       zType2 = "TABLE";
 #ifndef SQLITE_OMIT_VIEW
     }else{
       /* A view */
-    /*  sqlite3VdbeAddOp(v, OP_Integer, 0, 0); */
       zType = "view";
       zType2 = "VIEW";
 #endif
@@ -2390,7 +2378,7 @@ exit_create_index:
 
 /*
 ** Fill the Index.aiRowEst[] array with default information - information
-** to be used when we have no ANALYZE command to run.
+** to be used when we have not run the ANALYZE command.
 **
 ** aiRowEst[0] is suppose to contain the number of elements in the index.
 ** Since we do not know, guess 1 million.  aiRowEst[1] is an estimate of the
index cf81cfeef22b4c36ff6d65c0c25c4ec00c76fd63..e9a383ec9e6e6af603a289a88c14f557dfa9fc3a 100644 (file)
@@ -1722,7 +1722,7 @@ int sqlite3VdbeSerialGet(
       pMem->flags = MEM_Int;
       return 6;
     }
-    case 6:   /* 6-byte signed integer */
+    case 6:   /* 8-byte signed integer */
     case 7: { /* IEEE floating point */
       u64 x = (buf[0]<<24) | (buf[1]<<16) | (buf[2]<<8) | buf[3];
       u32 y = (buf[4]<<24) | (buf[5]<<16) | (buf[6]<<8) | buf[7];