Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
c9534b6e
Commit
c9534b6e
authored
Mar 31, 2009
by
marko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
branches/zip: struct read_view_struct: Add clarifying comments about
low_limit_id and up_limit_id.
parent
b76aa20c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
include/read0read.h
include/read0read.h
+8
-3
No files found.
include/read0read.h
View file @
c9534b6e
...
...
@@ -133,16 +133,21 @@ struct read_view_struct{
can be removed in purge if not needed by other
views */
dulint
low_limit_id
;
/* The read should not see any transaction
with trx id >= this value */
with trx id >= this value. In other words,
this is the "high water mark". */
dulint
up_limit_id
;
/* The read should see all trx ids which
are strictly smaller (<) than this value */
are strictly smaller (<) than this value.
In other words,
this is the "low water mark". */
ulint
n_trx_ids
;
/* Number of cells in the trx_ids array */
dulint
*
trx_ids
;
/* Additional trx ids which the read should
not see: typically, these are the active
transactions at the time when the read is
serialized, except the reading transaction
itself; the trx ids in this array are in a
descending order */
descending order. These trx_ids should be
between the "low" and "high" water marks,
that is, up_limit_id and low_limit_id. */
dulint
creator_trx_id
;
/* trx id of creating transaction, or
(0, 0) used in purge */
UT_LIST_NODE_T
(
read_view_t
)
view_list
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment