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
d8493f40
Commit
d8493f40
authored
Jan 22, 2015
by
Rich Prohaska
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into releases/tokudb-7.5
parents
c30c1093
1abb2286
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
68 additions
and
0 deletions
+68
-0
mysql-test/suite/tokudb.bugs/r/db801.result
mysql-test/suite/tokudb.bugs/r/db801.result
+18
-0
mysql-test/suite/tokudb.bugs/t/db801.test
mysql-test/suite/tokudb.bugs/t/db801.test
+50
-0
No files found.
mysql-test/suite/tokudb.bugs/r/db801.result
0 → 100644
View file @
d8493f40
set default_storage_engine=tokudb;
drop table if exists t;
create table t (id int not null primary key, c int not null) engine=tokudb;
insert into t values (1,0);
begin;
update t set c=10 where id=1;
update t set c=100;
ERROR HY000: Lock wait timeout exceeded; try restarting transaction
rollback;
drop table t;
create table t (id int not null primary key, c int not null) engine=tokudb partition by hash(id) partitions 1;
insert into t values (1,0);
begin;
update t set c=10 where id=1;
update t set c=100;
ERROR HY000: Lock wait timeout exceeded; try restarting transaction
rollback;
drop table t;
mysql-test/suite/tokudb.bugs/t/db801.test
0 → 100644
View file @
d8493f40
# test for the DB-801 bug on mysql-5.5.41
source
include
/
have_tokudb
.
inc
;
source
include
/
have_partition
.
inc
;
set
default_storage_engine
=
tokudb
;
disable_warnings
;
drop
table
if
exists
t
;
enable_warnings
;
# run the test on a tokudb table
create
table
t
(
id
int
not
null
primary
key
,
c
int
not
null
)
engine
=
tokudb
;
insert
into
t
values
(
1
,
0
);
connect
(
conn1
,
localhost
,
root
,,);
connection
default
;
begin
;
update
t
set
c
=
10
where
id
=
1
;
connection
conn1
;
--
error
ER_LOCK_WAIT_TIMEOUT
update
t
set
c
=
100
;
connection
default
;
rollback
;
disconnect
conn1
;
drop
table
t
;
# run the test on a partitioned tokudb table
create
table
t
(
id
int
not
null
primary
key
,
c
int
not
null
)
engine
=
tokudb
partition
by
hash
(
id
)
partitions
1
;
insert
into
t
values
(
1
,
0
);
connect
(
conn1
,
localhost
,
root
,,);
connection
default
;
begin
;
update
t
set
c
=
10
where
id
=
1
;
connection
conn1
;
--
error
ER_LOCK_WAIT_TIMEOUT
update
t
set
c
=
100
;
connection
default
;
rollback
;
disconnect
conn1
;
drop
table
t
;
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