diff options
author | Ben Johnson <benbjohnson@yahoo.com> | 2014-03-08 19:45:56 -0800 |
---|---|---|
committer | Ben Johnson <benbjohnson@yahoo.com> | 2014-03-08 19:45:56 -0800 |
commit | 4e252b8a7f3df03ff8a079de1e3d7c64f0fcde6d (patch) | |
tree | 93ac43914f9cd20c8eea13f18105e55026a7ea8d /node.go | |
parent | Merge pull request #60 from benbjohnson/tx (diff) | |
parent | Consolidate Tx and RWTx. (diff) | |
download | dedo-4e252b8a7f3df03ff8a079de1e3d7c64f0fcde6d.tar.gz dedo-4e252b8a7f3df03ff8a079de1e3d7c64f0fcde6d.tar.xz |
Merge pull request #61 from benbjohnson/merge-tx
Consolidate Tx and RWTx
Diffstat (limited to 'node.go')
-rw-r--r-- | node.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8,7 +8,7 @@ import ( // node represents an in-memory, deserialized page. type node struct { - tx *RWTx + tx *Tx isLeaf bool unbalanced bool key []byte |