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
fde921b0
Commit
fde921b0
authored
Apr 23, 2013
by
Rich Prohaska
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove overactive assert in ha_tokudb::external_lock
parent
fc2eb8cf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
storage/tokudb/ha_tokudb.cc
storage/tokudb/ha_tokudb.cc
+3
-3
No files found.
storage/tokudb/ha_tokudb.cc
View file @
fde921b0
...
...
@@ -6134,17 +6134,17 @@ int ha_tokudb::external_lock(THD * thd, int lock_type) {
if
(
lock_type
!=
F_UNLCK
)
{
is_fast_alter_running
=
false
;
use_write_locks
=
false
;
if
(
lock_type
==
F_WRLCK
)
if
(
lock_type
==
F_WRLCK
)
{
use_write_locks
=
true
;
}
if
(
!
trx
->
tokudb_lock_count
++
)
{
DBUG_ASSERT
(
trx
->
stmt
==
0
);
assert
(
trx
->
stmt
==
0
);
transaction
=
NULL
;
// Safety
error
=
create_txn
(
thd
,
trx
);
if
(
error
)
{
goto
cleanup
;
}
}
assert
(
thd
->
in_sub_stmt
==
0
);
transaction
=
trx
->
sub_sp_level
;
}
else
{
...
...
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