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
ee44bfae
Commit
ee44bfae
authored
Nov 20, 2013
by
Andrew McDonnell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typo in MTR script that triggered a deprecation warning after 10.0.7 merge
parent
4ef0fd67
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
mysql-test/suite/oqgraph/regression_796647.result
mysql-test/suite/oqgraph/regression_796647.result
+1
-1
mysql-test/suite/oqgraph/regression_796647.test
mysql-test/suite/oqgraph/regression_796647.test
+1
-1
No files found.
mysql-test/suite/oqgraph/regression_796647.result
View file @
ee44bfae
...
...
@@ -15,7 +15,7 @@ weight DOUBLE NULL,
seq BIGINT UNSIGNED NULL,
linkid BIGINT UNSIGNED NULL,
KEY (latch, origid, destid) USING HASH,
KEY (latch,
origid, dest
id) USING HASH
KEY (latch,
destid, orig
id) USING HASH
) 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);
SELECT * FROM graph_base;
...
...
mysql-test/suite/oqgraph/regression_796647.test
View file @
ee44bfae
...
...
@@ -22,7 +22,7 @@ CREATE TABLE graph (
seq
BIGINT
UNSIGNED
NULL
,
linkid
BIGINT
UNSIGNED
NULL
,
KEY
(
latch
,
origid
,
destid
)
USING
HASH
,
KEY
(
latch
,
origid
,
dest
id
)
USING
HASH
KEY
(
latch
,
destid
,
orig
id
)
USING
HASH
)
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
);
...
...
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