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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
d7a9aed4
Commit
d7a9aed4
authored
Feb 08, 2017
by
Michael Widenius
Committed by
Sergei Golubchik
Feb 28, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed test failing as myisam table was deleted before oqgraph table.
parent
4bad74e1
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
storage/oqgraph/mysql-test/oqgraph/regression_mdev6282.result
...age/oqgraph/mysql-test/oqgraph/regression_mdev6282.result
+1
-1
storage/oqgraph/mysql-test/oqgraph/regression_mdev6282.test
storage/oqgraph/mysql-test/oqgraph/regression_mdev6282.test
+1
-1
storage/oqgraph/mysql-test/oqgraph/regression_mdev6345.result
...age/oqgraph/mysql-test/oqgraph/regression_mdev6345.result
+1
-1
storage/oqgraph/mysql-test/oqgraph/regression_mdev6345.test
storage/oqgraph/mysql-test/oqgraph/regression_mdev6345.test
+1
-1
No files found.
storage/oqgraph/mysql-test/oqgraph/regression_mdev6282.result
View file @
d7a9aed4
...
...
@@ -33,5 +33,5 @@ FROM `version_history` AS `v` INNER JOIN `db_history` AS `db` ON `db`.`nodeID` =
WHERE `latch` = 'breadth_first' AND `origid` = '1' ORDER BY `weight` DESC LIMIT 1;
version nodeID
0.0.3 3
DROP TABLE db_history;
DROP TABLE version_history;
DROP TABLE db_history;
storage/oqgraph/mysql-test/oqgraph/regression_mdev6282.test
View file @
d7a9aed4
...
...
@@ -40,8 +40,8 @@
--
disconnect
con2
--
connect
(
con3
,
localhost
,
root
,,
test
)
DROP
TABLE
db_history
;
DROP
TABLE
version_history
;
DROP
TABLE
db_history
;
--
disconnect
con3
storage/oqgraph/mysql-test/oqgraph/regression_mdev6345.result
View file @
d7a9aed4
...
...
@@ -8,5 +8,5 @@ latch origid destid weight seq linkid
breadth_first 1 6 NULL 0 1
breadth_first 1 6 1 1 2
breadth_first 1 6 1 2 6
DROP TABLE IF EXISTS oq_backing;
DROP TABLE IF EXISTS oq_graph;
DROP TABLE IF EXISTS oq_backing;
storage/oqgraph/mysql-test/oqgraph/regression_mdev6345.test
View file @
d7a9aed4
...
...
@@ -14,6 +14,6 @@ CREATE TABLE oq_graph (latch VARCHAR(32) NULL, origid BIGINT UNSIGNED NULL, dest
SELECT
*
FROM
oq_graph
WHERE
latch
=
'breadth_first'
AND
origid
=
1
AND
destid
=
6
;
DROP
TABLE
IF
EXISTS
oq_backing
;
DROP
TABLE
IF
EXISTS
oq_graph
;
DROP
TABLE
IF
EXISTS
oq_backing
;
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