From: danielk1977 Date: Sat, 8 Mar 2008 06:16:29 +0000 (+0000) Subject: Move a comment within the Parse structure to make it more accurate. No actual code... X-Git-Tag: version-3.6.10~1335 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cac336ad95994a2f26685c09e2aeeba5087d1956;p=thirdparty%2Fsqlite.git Move a comment within the Parse structure to make it more accurate. No actual code changes. (CVS 4842) FossilOrigin-Name: 0ca14399b19ee22870394065c5c6a136ea41418d --- diff --git a/manifest b/manifest index 23f879d0c8..1e734d32a6 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Make\ssure\sall\snecessary\smutexes\sare\sheld\sprior\sto\sinitializing\sthe\nschema\sin\ssqlite3_table_column_metadata().\s(CVS\s4841) -D 2008-03-07T21:37:19 +C Move\sa\scomment\swithin\sthe\sParse\sstructure\sto\smake\sit\smore\saccurate.\sNo\sactual\scode\schanges.\s(CVS\s4842) +D 2008-03-08T06:16:30 F Makefile.arm-wince-mingw32ce-gcc ac5f7b2cef0cd850d6f755ba6ee4ab961b1fadf7 F Makefile.in d521464011d6965bbda1b699f1850c6e33141c73 F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654 @@ -141,7 +141,7 @@ F src/server.c 087b92a39d883e3fa113cae259d64e4c7438bc96 F src/shell.c 22297fffa6f00a6c6d44020fa13b1184a1bb372d F src/sqlite.h.in 140a7c2f8a74b52d5e42b714bd79ce4c5df21538 F src/sqlite3ext.h 50c70a894ffe8e6ada5948c89b91db0a80a6b2a7 -F src/sqliteInt.h 6b9ee2df064c05b53c33eadc2e15bb2b23d60c89 +F src/sqliteInt.h 31a6b927cf10822ec9189e12a7900b896d8e8dfd F src/sqliteLimit.h ee4430f88f69bf63527967bb35ca52af7b0ccb1e F src/table.c 2c48c575dd59b3a6c5c306bc55f51a9402cf429a F src/tclsqlite.c d95e0e74c7167b2807f9f4f73bf45f7c58096297 @@ -623,7 +623,7 @@ F www/tclsqlite.tcl 8be95ee6dba05eabcd27a9d91331c803f2ce2130 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0 F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b F www/whentouse.tcl fc46eae081251c3c181bd79c5faef8195d7991a5 -P 752d8e21bb250d7df58a3abc945fcd7a3b38ad15 -R 9e4a0124c9704bd26a7cbe40ea909ed1 -U drh -Z eab5abe0c56f409cb610e17d80b567b9 +P 4996ff93573c69b51eb7b1348058f85e6cb2728a +R 30b9ad0aeed58f8bd0e49e314e48bfcc +U danielk1977 +Z 1b5bbe8043f8fbf804a5e070bef6b888 diff --git a/manifest.uuid b/manifest.uuid index 3e48841422..015e47573d 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -4996ff93573c69b51eb7b1348058f85e6cb2728a \ No newline at end of file +0ca14399b19ee22870394065c5c6a136ea41418d \ No newline at end of file diff --git a/src/sqliteInt.h b/src/sqliteInt.h index a4c2e1b123..b5e4e8882f 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.670 2008/03/06 16:28:58 mlcreech Exp $ +** @(#) $Id: sqliteInt.h,v 1.671 2008/03/08 06:16:30 danielk1977 Exp $ */ #ifndef _SQLITEINT_H_ #define _SQLITEINT_H_ @@ -1492,12 +1492,12 @@ struct Parse { int nTableLock; /* Number of locks in aTableLock */ TableLock *aTableLock; /* Required table locks for shared-cache mode */ #endif + int regRowid; /* Register holding rowid of CREATE TABLE entry */ + int regRoot; /* Register holding root page number for new objects */ /* Above is constant between recursions. Below is reset before and after ** each recursion */ - int regRowid; /* Register holding rowid of CREATE TABLE entry */ - int regRoot; /* Register holding root page number for new objects */ int nVar; /* Number of '?' variables seen in the SQL so far */ int nVarExpr; /* Number of used slots in apVarExpr[] */ int nVarExprAlloc; /* Number of allocated slots in apVarExpr[] */