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
44b2d69d
Commit
44b2d69d
authored
Sep 14, 2006
by
osku
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
btr0pcur.h: Change FIXME to TODO.
parent
e06fb859
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
include/btr0pcur.h
include/btr0pcur.h
+8
-4
No files found.
include/btr0pcur.h
View file @
44b2d69d
...
...
@@ -445,7 +445,7 @@ selects, updates, and deletes. */
struct
btr_pcur_struct
{
btr_cur_t
btr_cur
;
/* a B-tree cursor */
ulint
latch_mode
;
/* see
FIXME
note below!
ulint
latch_mode
;
/* see
TODO
note below!
BTR_SEARCH_LEAF, BTR_MODIFY_LEAF,
BTR_MODIFY_TREE, or BTR_NO_LATCHES,
depending on the latching state of
...
...
@@ -473,7 +473,7 @@ struct btr_pcur_struct{
dulint
modify_clock
;
/* the modify clock value of the
buffer block when the cursor position
was stored */
ulint
pos_state
;
/* see
FIXME
note below!
ulint
pos_state
;
/* see
TODO
note below!
BTR_PCUR_IS_POSITIONED,
BTR_PCUR_WAS_POSITIONED,
BTR_PCUR_NOT_POSITIONED */
...
...
@@ -495,14 +495,18 @@ struct btr_pcur_struct{
is not NULL */
};
#define BTR_PCUR_IS_POSITIONED 1997660512
/*
FIXME
: currently, the state
#define BTR_PCUR_IS_POSITIONED 1997660512
/*
TODO
: currently, the state
can be BTR_PCUR_IS_POSITIONED,
though it really should be
BTR_PCUR_WAS_POSITIONED,
because we have no obligation
to commit the cursor with
mtr; similarly latch_mode may
be out of date */
be out of date. This can
lead to problems if btr_pcur
is not used the right way;
all current code should be
ok. */
#define BTR_PCUR_WAS_POSITIONED 1187549791
#define BTR_PCUR_NOT_POSITIONED 1328997689
...
...
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