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
ba000b3d
Commit
ba000b3d
authored
Jan 12, 2015
by
Rich Prohaska
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DB-791 remove memcache patch
parent
f9e59a06
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
39 deletions
+0
-39
mysql-test/suite/tokudb.bugs/r/memcache_dirty.result
mysql-test/suite/tokudb.bugs/r/memcache_dirty.result
+0
-14
mysql-test/suite/tokudb.bugs/t/memcache_dirty.test
mysql-test/suite/tokudb.bugs/t/memcache_dirty.test
+0
-25
No files found.
mysql-test/suite/tokudb.bugs/r/memcache_dirty.result
deleted
100644 → 0
View file @
f9e59a06
SET DEFAULT_STORAGE_ENGINE = 'tokudb';
DROP TABLE IF EXISTS t1;
create table t1 (i int, j int, primary key (i))engine=TokuDB;
insert into t1 values (0,0) MEMCACHE_DIRTY 'a';
insert into t1 values (1,0) MEMCACHE_DIRTY 'b', 'c';
update t1 set j=j+1 where i=0 MEMCACHE_DIRTY 'a';
update t1 set j=j+1 where i=1 MEMCACHE_DIRTY 'b', 'c';
insert into t1 values (0,0) on duplicate key update j=j+1 MEMCACHE_DIRTY 'a';
insert into t1 values (2,0) on duplicate key update j=j+1 MEMCACHE_DIRTY 'a', 'b';
replace into t1 values (0,3) MEMCACHE_DIRTY 'a';
replace into t1 values (3,3) MEMCACHE_DIRTY 'a', 'b';
delete from t1 where i=0 MEMCACHE_DIRTY 'a';
delete from t1 where i=1 MEMCACHE_DIRTY 'b', 'c';
DROP TABLE t1;
mysql-test/suite/tokudb.bugs/t/memcache_dirty.test
deleted
100644 → 0
View file @
f9e59a06
--
source
include
/
have_tokudb
.
inc
#
# Record inconsistency.
#
#
SET
DEFAULT_STORAGE_ENGINE
=
'tokudb'
;
--
disable_warnings
DROP
TABLE
IF
EXISTS
t1
;
--
enable_warnings
create
table
t1
(
i
int
,
j
int
,
primary
key
(
i
))
engine
=
TokuDB
;
insert
into
t1
values
(
0
,
0
)
MEMCACHE_DIRTY
'a'
;
insert
into
t1
values
(
1
,
0
)
MEMCACHE_DIRTY
'b'
,
'c'
;
update
t1
set
j
=
j
+
1
where
i
=
0
MEMCACHE_DIRTY
'a'
;
update
t1
set
j
=
j
+
1
where
i
=
1
MEMCACHE_DIRTY
'b'
,
'c'
;
insert
into
t1
values
(
0
,
0
)
on
duplicate
key
update
j
=
j
+
1
MEMCACHE_DIRTY
'a'
;
insert
into
t1
values
(
2
,
0
)
on
duplicate
key
update
j
=
j
+
1
MEMCACHE_DIRTY
'a'
,
'b'
;
replace
into
t1
values
(
0
,
3
)
MEMCACHE_DIRTY
'a'
;
replace
into
t1
values
(
3
,
3
)
MEMCACHE_DIRTY
'a'
,
'b'
;
delete
from
t1
where
i
=
0
MEMCACHE_DIRTY
'a'
;
delete
from
t1
where
i
=
1
MEMCACHE_DIRTY
'b'
,
'c'
;
# Final cleanup.
DROP
TABLE
t1
;
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