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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
0428fec7
Commit
0428fec7
authored
Sep 03, 2005
by
heikki@hundin.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
row0sel.c:
Fix a wrong debug assert in the previous patch
parent
92f03433
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
innobase/row/row0sel.c
innobase/row/row0sel.c
+3
-4
No files found.
innobase/row/row0sel.c
View file @
0428fec7
...
...
@@ -3818,9 +3818,7 @@ cursor lock count is done correctly. See bugs #12263 and #12456!
if
(
UNIV_UNLIKELY
(
rec_get_deleted_flag
(
rec
,
comp
)))
{
/* The record is delete-marked: we can skip it if this is
not a consistent read which might see an earlier version
of a non-clustered index record */
/* The record is delete-marked: we can skip it */
if
(
srv_locks_unsafe_for_binlog
&&
prebuilt
->
select_lock_type
!=
LOCK_NONE
)
{
...
...
@@ -3895,7 +3893,8 @@ cursor lock count is done correctly. See bugs #12263 and #12456!
result_rec
=
clust_rec
;
ut_ad
(
rec_offs_validate
(
rec
,
clust_index
,
offsets
));
ut_ad
(
rec_offs_validate
(
result_rec
,
clust_index
,
offsets
));
}
else
{
/* We used 'offsets' for the clust rec, recalculate
them for 'rec' */
...
...
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