Commit ee44bfae authored by Andrew McDonnell's avatar Andrew McDonnell

Fix typo in MTR script that triggered a deprecation warning after 10.0.7 merge

parent 4ef0fd67
...@@ -15,7 +15,7 @@ weight DOUBLE NULL, ...@@ -15,7 +15,7 @@ weight DOUBLE NULL,
seq BIGINT UNSIGNED NULL, seq BIGINT UNSIGNED NULL,
linkid BIGINT UNSIGNED NULL, linkid BIGINT UNSIGNED NULL,
KEY (latch, origid, destid) USING HASH, KEY (latch, origid, destid) USING HASH,
KEY (latch, origid, destid) USING HASH KEY (latch, destid, origid) USING HASH
) ENGINE=OQGRAPH DATA_TABLE='graph_base' ORIGID='von' DESTID='nach' WEIGHT='weight'; ) ENGINE=OQGRAPH DATA_TABLE='graph_base' ORIGID='von' DESTID='nach' WEIGHT='weight';
INSERT INTO graph_base(von,nach,weight) VALUES (3,5,2), (5,4,1), (5,6,1); INSERT INTO graph_base(von,nach,weight) VALUES (3,5,2), (5,4,1), (5,6,1);
SELECT * FROM graph_base; SELECT * FROM graph_base;
......
...@@ -22,7 +22,7 @@ CREATE TABLE graph ( ...@@ -22,7 +22,7 @@ CREATE TABLE graph (
seq BIGINT UNSIGNED NULL, seq BIGINT UNSIGNED NULL,
linkid BIGINT UNSIGNED NULL, linkid BIGINT UNSIGNED NULL,
KEY (latch, origid, destid) USING HASH, KEY (latch, origid, destid) USING HASH,
KEY (latch, origid, destid) USING HASH KEY (latch, destid, origid) USING HASH
) ENGINE=OQGRAPH DATA_TABLE='graph_base' ORIGID='von' DESTID='nach' WEIGHT='weight'; ) ENGINE=OQGRAPH DATA_TABLE='graph_base' ORIGID='von' DESTID='nach' WEIGHT='weight';
INSERT INTO graph_base(von,nach,weight) VALUES (3,5,2), (5,4,1), (5,6,1); INSERT INTO graph_base(von,nach,weight) VALUES (3,5,2), (5,4,1), (5,6,1);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment