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
e87b68e0
Commit
e87b68e0
authored
Aug 14, 2006
by
marko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
row_vers_build_for_semi_consistent_read(): rec_trx_id was uninitialized
in a comparison. Initialize it.
parent
d2a7614e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
row/row0vers.c
row/row0vers.c
+1
-1
No files found.
row/row0vers.c
View file @
e87b68e0
...
...
@@ -553,7 +553,7 @@ row_vers_build_for_semi_consistent_read(
mem_heap_t
*
heap
=
NULL
;
byte
*
buf
;
ulint
err
;
dulint
rec_trx_id
;
dulint
rec_trx_id
=
ut_dulint_create
(
0
,
0
)
;
ut_ad
(
index
->
type
&
DICT_CLUSTERED
);
ut_ad
(
mtr_memo_contains
(
mtr
,
buf_block_align
(
rec
),
MTR_MEMO_PAGE_X_FIX
)
...
...
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