aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2013-06-11 13:30:04 +0000
committerdrh <drh@noemail.net>2013-06-11 13:30:04 +0000
commit8e23daf372c57084e7921e48c1b7968b631bb94d (patch)
treeca19add163193236f59050dcafe186f8e7f1e7e7 /src/sqliteInt.h
parent8b76656ad4cf13b4a716fa208bbc1433b21fd606 (diff)
downloadsqlite-8e23daf372c57084e7921e48c1b7968b631bb94d.tar.gz
sqlite-8e23daf372c57084e7921e48c1b7968b631bb94d.zip
Fix the Parse.nQueryLoop state variable to work with NGQP.
FossilOrigin-Name: f1cac24f06b9c71cfa472fdcf2da4cd8689a7cc3
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index aa1ea5101..d3d6fcf70 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -2226,7 +2226,7 @@ struct Parse {
/* Information used while coding trigger programs. */
Parse *pToplevel; /* Parse structure for main program (or NULL) */
Table *pTriggerTab; /* Table triggers are being coded for */
- u32 nQueryLoop; /* Estimated number of iterations of a query */
+ u32 grep nQueryLoop; /* Est number of iterations of a query (10*log2(N)) */
u32 oldmask; /* Mask of old.* columns referenced */
u32 newmask; /* Mask of new.* columns referenced */
u8 eTriggerOp; /* TK_UPDATE, TK_INSERT or TK_DELETE */