aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <>2023-07-31 17:20:12 +0000
committerdrh <>2023-07-31 17:20:12 +0000
commitc8c6763782d102519611586514f858a601c1d6a5 (patch)
tree1d2d21382ae23de58c2ad85e16b588c90e1c9c57 /src/sqliteInt.h
parentf0c701c4109629cfbf35d55b708403807666c6fb (diff)
downloadsqlite-c8c6763782d102519611586514f858a601c1d6a5.tar.gz
sqlite-c8c6763782d102519611586514f858a601c1d6a5.zip
Improved debug tracking of the Parse.nQueryLoop value.
FossilOrigin-Name: 4a8a17498ecaccca5e5aab65d4596cbca9799547f50683237d08c1fa3556f1cf
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 78ae7ad69..7d6a16c87 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -3790,7 +3790,7 @@ struct Parse {
int addrCrTab; /* Address of OP_CreateBtree on CREATE TABLE */
Returning *pReturning; /* The RETURNING clause */
} u1;
- u32 nQueryLoop; /* Est number of iterations of a query (10*log2(N)) */
+ LogEst 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 */
#ifndef SQLITE_OMIT_PROGRESS_CALLBACK