From: drh Date: Thu, 18 Aug 2005 18:15:05 +0000 (+0000) Subject: Comment fixes. No changes to the underlying code. (CVS 2598) X-Git-Tag: version-3.6.10~3561 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=91124b35453fce8f3101ae5e29dc4b6cdfe109b8;p=thirdparty%2Fsqlite.git Comment fixes. No changes to the underlying code. (CVS 2598) FossilOrigin-Name: b865e243ee772f009dbf466d69525f2cdef78c0e --- diff --git a/manifest b/manifest index a150a55e4b..f63e319a0a 100644 --- 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 diff --git a/manifest.uuid b/manifest.uuid index 16ef4d2e34..f5d587e851 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -32efcd24612908516fb5bc58ab3fe4790586a220 \ No newline at end of file +b865e243ee772f009dbf466d69525f2cdef78c0e \ No newline at end of file diff --git a/src/build.c b/src/build.c index 18830f378c..197ce9cb6b 100644 --- a/src/build.c +++ b/src/build.c @@ -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 @@ -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; izType = 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 diff --git a/src/vdbeaux.c b/src/vdbeaux.c index cf81cfeef2..e9a383ec9e 100644 --- a/src/vdbeaux.c +++ b/src/vdbeaux.c @@ -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];