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
219a00b1
Commit
219a00b1
authored
Mar 01, 2013
by
Arjen Lentz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removing oqgraph binlog test cases as v3 is a shim and doesn't do any writes
parent
386df099
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
45 deletions
+0
-45
mysql-test/suite/oqgraph/r/binlog.result
mysql-test/suite/oqgraph/r/binlog.result
+0
-18
mysql-test/suite/oqgraph/t/binlog.test
mysql-test/suite/oqgraph/t/binlog.test
+0
-27
No files found.
mysql-test/suite/oqgraph/r/binlog.result
deleted
100644 → 0
View file @
386df099
drop table if exists graph;
CREATE TABLE graph (
latch SMALLINT UNSIGNED NULL,
origid BIGINT UNSIGNED NULL,
destid BIGINT UNSIGNED NULL,
weight DOUBLE NULL,
seq BIGINT UNSIGNED NULL,
linkid BIGINT UNSIGNED NULL,
KEY (latch, origid, destid) USING HASH,
KEY (latch, destid, origid) USING HASH
) ENGINE=OQGRAPH;
SET binlog_format = row;
insert into graph(origid, destid) values (1,3), (3,1);
SET binlog_format = statement;
insert into graph(origid, destid) values (3,4), (4,3);
SET binlog_format = mixed;
insert into graph(origid, destid) values (3,5), (5,3);
drop table graph;
mysql-test/suite/oqgraph/t/binlog.test
deleted
100644 → 0
View file @
386df099
--
source
include
/
have_log_bin
.
inc
--
disable_warnings
drop
table
if
exists
graph
;
--
enable_warnings
CREATE
TABLE
graph
(
latch
SMALLINT
UNSIGNED
NULL
,
origid
BIGINT
UNSIGNED
NULL
,
destid
BIGINT
UNSIGNED
NULL
,
weight
DOUBLE
NULL
,
seq
BIGINT
UNSIGNED
NULL
,
linkid
BIGINT
UNSIGNED
NULL
,
KEY
(
latch
,
origid
,
destid
)
USING
HASH
,
KEY
(
latch
,
destid
,
origid
)
USING
HASH
)
ENGINE
=
OQGRAPH
;
# MBug#524625: OQGraph error with binary logging enabled
# Test that OQGraph works with different binlogging modes.
SET
binlog_format
=
row
;
insert
into
graph
(
origid
,
destid
)
values
(
1
,
3
),
(
3
,
1
);
SET
binlog_format
=
statement
;
insert
into
graph
(
origid
,
destid
)
values
(
3
,
4
),
(
4
,
3
);
SET
binlog_format
=
mixed
;
insert
into
graph
(
origid
,
destid
)
values
(
3
,
5
),
(
5
,
3
);
drop
table
graph
;
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