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
ef5d3fd2
Commit
ef5d3fd2
authored
Oct 13, 2014
by
Rich Prohaska
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DB-739 add test cases
parent
d589648e
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
300125 additions
and
0 deletions
+300125
-0
mysql-test/suite/tokudb.bugs/r/db739_insert.result
mysql-test/suite/tokudb.bugs/r/db739_insert.result
+100013
-0
mysql-test/suite/tokudb.bugs/r/db739_replace.result
mysql-test/suite/tokudb.bugs/r/db739_replace.result
+100014
-0
mysql-test/suite/tokudb.bugs/r/db739_upsert.result
mysql-test/suite/tokudb.bugs/r/db739_upsert.result
+100013
-0
mysql-test/suite/tokudb.bugs/t/db739_insert.test
mysql-test/suite/tokudb.bugs/t/db739_insert.test
+28
-0
mysql-test/suite/tokudb.bugs/t/db739_replace.test
mysql-test/suite/tokudb.bugs/t/db739_replace.test
+29
-0
mysql-test/suite/tokudb.bugs/t/db739_upsert.test
mysql-test/suite/tokudb.bugs/t/db739_upsert.test
+28
-0
No files found.
mysql-test/suite/tokudb.bugs/r/db739_insert.result
0 → 100644
View file @
ef5d3fd2
This diff is collapsed.
Click to expand it.
mysql-test/suite/tokudb.bugs/r/db739_replace.result
0 → 100644
View file @
ef5d3fd2
This diff is collapsed.
Click to expand it.
mysql-test/suite/tokudb.bugs/r/db739_upsert.result
0 → 100644
View file @
ef5d3fd2
This diff is collapsed.
Click to expand it.
mysql-test/suite/tokudb.bugs/t/db739_insert.test
0 → 100644
View file @
ef5d3fd2
source
include
/
have_tokudb
.
inc
;
set
default_storage_engine
=
tokudb
;
disable_warnings
;
drop
table
if
exists
t
;
enable_warnings
;
create
table
t
(
id
bigint
not
null
,
a
bigint
not
null
default
0
,
b
bigint
not
null
default
0
,
c
bigint
not
null
default
0
,
primary
key
(
id
,
a
)
);
set
tokudb_commit_sync
=
0
;
let
$id
=
0
;
while
(
$id
<
1000
)
{
let
$a
=
0
;
while
(
$a
<
100
)
{
eval
insert
into
t
(
id
,
a
)
values
(
$id
,
$a
);
inc
$a
;
}
inc
$id
;
}
delete
from
t
where
id
=
404
;
insert
into
t
values
(
404
,
0
,
0
,
0
);
drop
table
t
;
\ No newline at end of file
mysql-test/suite/tokudb.bugs/t/db739_replace.test
0 → 100644
View file @
ef5d3fd2
source
include
/
have_tokudb
.
inc
;
set
default_storage_engine
=
tokudb
;
disable_warnings
;
drop
table
if
exists
t
;
enable_warnings
;
create
table
t
(
id
bigint
not
null
,
a
bigint
not
null
default
0
,
b
bigint
not
null
default
0
,
c
bigint
not
null
default
0
,
primary
key
(
id
,
a
)
);
set
tokudb_commit_sync
=
0
;
let
$id
=
0
;
while
(
$id
<
1000
)
{
let
$a
=
0
;
while
(
$a
<
100
)
{
eval
insert
into
t
(
id
,
a
)
values
(
$id
,
$a
);
inc
$a
;
}
inc
$id
;
}
delete
from
t
where
id
=
404
;
set
tokudb_pk_insert_mode
=
2
;
replace
into
t
values
(
404
,
0
,
0
,
0
);
drop
table
t
;
\ No newline at end of file
mysql-test/suite/tokudb.bugs/t/db739_upsert.test
0 → 100644
View file @
ef5d3fd2
source
include
/
have_tokudb
.
inc
;
set
default_storage_engine
=
tokudb
;
disable_warnings
;
drop
table
if
exists
t
;
enable_warnings
;
create
table
t
(
id
bigint
not
null
,
a
bigint
not
null
default
0
,
b
bigint
not
null
default
0
,
c
bigint
not
null
default
0
,
primary
key
(
id
,
a
)
);
set
tokudb_commit_sync
=
0
;
let
$id
=
0
;
while
(
$id
<
1000
)
{
let
$a
=
0
;
while
(
$a
<
100
)
{
eval
insert
into
t
(
id
,
a
)
values
(
$id
,
$a
);
inc
$a
;
}
inc
$id
;
}
delete
from
t
where
id
=
404
;
insert
into
t
values
(
404
,
0
,
0
,
0
)
on
duplicate
key
update
b
=
b
+
1
;
drop
table
t
;
\ No newline at end of file
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