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
02c88523
Commit
02c88523
authored
Dec 01, 2016
by
sensssz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug fix: consider lock wait mode first.
parent
f6da2b49
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
18 deletions
+9
-18
storage/innobase/lock/lock0lock.cc
storage/innobase/lock/lock0lock.cc
+9
-18
No files found.
storage/innobase/lock/lock0lock.cc
View file @
02c88523
...
...
@@ -1730,9 +1730,9 @@ RecLock::lock_alloc(
/*********************************************************************//**
Check if lock1 has higher priority than lock2.
NULL has lowest priority.
If either is a high priority transaction, the lock has higher priority.
If neither of them is wait lock, the first one has higher priority.
If only one of them is a wait lock, it has lower priority.
If either is a high priority transaction, the lock has higher priority.
Otherwise, the one with an older transaction has higher priority.
@returns true if lock1 has higher priority, false otherwise. */
bool
...
...
@@ -1744,28 +1744,19 @@ has_higher_priority(
return
false
;
}
else
if
(
lock2
==
NULL
)
{
return
true
;
}
// Ask the upper server layer if any of the two trx should be prefered.
int
preference
=
thd_deadlock_victim_preference
(
lock1
->
trx
->
mysql_thd
,
lock2
->
trx
->
mysql_thd
);
if
(
preference
==
-
1
)
{
// lock1 is preferred as a victim, so lock2 has higher priority
return
false
;
}
else
if
(
preference
==
1
)
{
// lock2 is preferred as a victim, so lock1 has higher priority
return
true
;
}
if
(
trx_is_high_priority
(
lock1
->
trx
))
{
}
// Granted locks has higher priority.
if
(
!
lock_get_wait
(
lock1
))
{
return
true
;
}
else
if
(
!
lock_get_wait
(
lock2
))
{
return
false
;
}
if
(
trx_is_high_priority
(
lock1
->
trx
))
{
return
true
;
}
if
(
trx_is_high_priority
(
lock2
->
trx
))
{
return
false
;
}
// No preference. Compre them by wait mode and trx age.
if
(
!
lock_get_wait
(
lock1
))
{
return
true
;
}
else
if
(
!
lock_get_wait
(
lock2
))
{
return
false
;
}
return
lock1
->
trx
->
start_time_micro
<=
lock2
->
trx
->
start_time_micro
;
}
...
...
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