diff options
author | drh <drh@noemail.net> | 2017-08-18 14:34:28 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2017-08-18 14:34:28 +0000 |
commit | 0f3f7664f01bb9fdaa45c4c71c53fbff7f0f09c4 (patch) | |
tree | b8975fca3a372232b938a7816440d963314716af /src/sqliteInt.h | |
parent | 62f6f51ae142112c8354460fc70f5c3471d329c4 (diff) | |
download | sqlite-0f3f7664f01bb9fdaa45c4c71c53fbff7f0f09c4.tar.gz sqlite-0f3f7664f01bb9fdaa45c4c71c53fbff7f0f09c4.zip |
Combine the OP_CreateTable and OP_CreateIndex opcodes of the bytecode engine
into a single OP_CreateBtree opcode. This simplifies the implementation and
makes the bytecode programs clearer.
FossilOrigin-Name: eb1202b5e43f1f029ad2bdf845509e7f31361e4dc189943e5e2bd4462e2ef3f3
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 8aa9832e8..368968940 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -3001,7 +3001,7 @@ struct Parse { AutoincInfo *pAinc; /* Information about AUTOINCREMENT counters */ Parse *pToplevel; /* Parse structure for main program (or NULL) */ Table *pTriggerTab; /* Table triggers are being coded for */ - int addrCrTab; /* Address of OP_CreateTable opcode on CREATE TABLE */ + int addrCrTab; /* Address of OP_CreateBtree opcode on CREATE TABLE */ u32 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 */ |