diff options
author | drh <drh@noemail.net> | 2014-07-24 16:23:51 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2014-07-24 16:23:51 +0000 |
commit | 35c3d8cc75623d1fe890c8aaaaabb174e5de8d23 (patch) | |
tree | 2e2cfdc5e4f43a0595f60d7b92f546a88d13366e /src/vdbeInt.h | |
parent | f257b4c61332fc7d64ad870e912338d0f31ef027 (diff) | |
parent | ba5b09319e2f79707bcc55a84a5f059ea0949334 (diff) | |
download | sqlite-35c3d8cc75623d1fe890c8aaaaabb174e5de8d23.tar.gz sqlite-35c3d8cc75623d1fe890c8aaaaabb174e5de8d23.zip |
Merge recent trunk changes into the sessions branch.
FossilOrigin-Name: a9db017eabdefafcda87c497e8bafa07002ac0fe
Diffstat (limited to 'src/vdbeInt.h')
-rw-r--r-- | src/vdbeInt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vdbeInt.h b/src/vdbeInt.h index 3d174a181..0df4e99a2 100644 --- a/src/vdbeInt.h +++ b/src/vdbeInt.h @@ -76,6 +76,7 @@ struct VdbeCursor { Bool useRandomRowid:1;/* Generate new record numbers semi-randomly */ Bool isTable:1; /* True if a table requiring integer keys */ Bool isOrdered:1; /* True if the underlying table is BTREE_UNORDERED */ + Pgno pgnoRoot; /* Root page of the open btree cursor */ sqlite3_vtab_cursor *pVtabCursor; /* The cursor for a virtual table */ i64 seqCount; /* Sequence counter */ i64 movetoTarget; /* Argument to the deferred sqlite3BtreeMoveto() */ |