-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
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
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
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
** 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>
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);
}
*/
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
/*
** 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