Skip to content

Commit d7a9aed

Browse files
montywivuvova
authored andcommitted
Fixed test failing as myisam table was deleted before oqgraph table.
1 parent 4bad74e commit d7a9aed

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

storage/oqgraph/mysql-test/oqgraph/regression_mdev6282.result

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ FROM `version_history` AS `v` INNER JOIN `db_history` AS `db` ON `db`.`nodeID` =
3333
WHERE `latch` = 'breadth_first' AND `origid` = '1' ORDER BY `weight` DESC LIMIT 1;
3434
version nodeID
3535
0.0.3 3
36-
DROP TABLE db_history;
3736
DROP TABLE version_history;
37+
DROP TABLE db_history;

storage/oqgraph/mysql-test/oqgraph/regression_mdev6282.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@
4040
--disconnect con2
4141

4242
--connect (con3,localhost,root,,test)
43-
DROP TABLE db_history;
4443
DROP TABLE version_history;
44+
DROP TABLE db_history;
4545
--disconnect con3
4646

4747

storage/oqgraph/mysql-test/oqgraph/regression_mdev6345.result

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ latch origid destid weight seq linkid
88
breadth_first 1 6 NULL 0 1
99
breadth_first 1 6 1 1 2
1010
breadth_first 1 6 1 2 6
11-
DROP TABLE IF EXISTS oq_backing;
1211
DROP TABLE IF EXISTS oq_graph;
12+
DROP TABLE IF EXISTS oq_backing;

storage/oqgraph/mysql-test/oqgraph/regression_mdev6345.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ CREATE TABLE oq_graph (latch VARCHAR(32) NULL, origid BIGINT UNSIGNED NULL, dest
1414

1515
SELECT * FROM oq_graph WHERE latch='breadth_first' AND origid=1 AND destid=6;
1616

17-
DROP TABLE IF EXISTS oq_backing;
1817
DROP TABLE IF EXISTS oq_graph;
18+
DROP TABLE IF EXISTS oq_backing;
1919

0 commit comments

Comments
 (0)