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
965bebcd
Commit
965bebcd
authored
Apr 02, 2014
by
andrew
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update test suite results after fixing MDEV-5891
parent
316aef5b
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
2 deletions
+8
-2
storage/oqgraph/mysql-test/oqgraph/general-Aria.result
storage/oqgraph/mysql-test/oqgraph/general-Aria.result
+2
-0
storage/oqgraph/mysql-test/oqgraph/general-MyISAM.result
storage/oqgraph/mysql-test/oqgraph/general-MyISAM.result
+2
-0
storage/oqgraph/mysql-test/oqgraph/general-innodb.result
storage/oqgraph/mysql-test/oqgraph/general-innodb.result
+2
-0
storage/oqgraph/mysql-test/oqgraph/generate_backing_table_tests_suite.sh
.../mysql-test/oqgraph/generate_backing_table_tests_suite.sh
+2
-1
storage/oqgraph/mysql-test/oqgraph/maintainer-general-record.sh
...e/oqgraph/mysql-test/oqgraph/maintainer-general-record.sh
+0
-1
No files found.
storage/oqgraph/mysql-test/oqgraph/general-Aria.result
View file @
965bebcd
...
...
@@ -18,6 +18,8 @@ linkid BIGINT UNSIGNED NULL,
KEY (latch, origid, destid) USING HASH,
KEY (latch, destid, origid) USING HASH
) ENGINE=OQGRAPH DATA_TABLE='graph_base' ORIGID='from_id', DESTID='to_id';
select * from graph;
latch origid destid weight seq linkid
INSERT INTO graph_base(from_id, to_id) VALUES (1,2), (2,1);
INSERT INTO graph_base(from_id, to_id) VALUES (1,3), (3,1);
INSERT INTO graph_base(from_id, to_id) VALUES (3,4), (4,3);
...
...
storage/oqgraph/mysql-test/oqgraph/general-MyISAM.result
View file @
965bebcd
...
...
@@ -18,6 +18,8 @@ linkid BIGINT UNSIGNED NULL,
KEY (latch, origid, destid) USING HASH,
KEY (latch, destid, origid) USING HASH
) ENGINE=OQGRAPH DATA_TABLE='graph_base' ORIGID='from_id', DESTID='to_id';
select * from graph;
latch origid destid weight seq linkid
INSERT INTO graph_base(from_id, to_id) VALUES (1,2), (2,1);
INSERT INTO graph_base(from_id, to_id) VALUES (1,3), (3,1);
INSERT INTO graph_base(from_id, to_id) VALUES (3,4), (4,3);
...
...
storage/oqgraph/mysql-test/oqgraph/general-innodb.result
View file @
965bebcd
...
...
@@ -18,6 +18,8 @@ linkid BIGINT UNSIGNED NULL,
KEY (latch, origid, destid) USING HASH,
KEY (latch, destid, origid) USING HASH
) ENGINE=OQGRAPH DATA_TABLE='graph_base' ORIGID='from_id', DESTID='to_id';
select * from graph;
latch origid destid weight seq linkid
INSERT INTO graph_base(from_id, to_id) VALUES (1,2), (2,1);
INSERT INTO graph_base(from_id, to_id) VALUES (1,3), (3,1);
INSERT INTO graph_base(from_id, to_id) VALUES (3,4), (4,3);
...
...
storage/oqgraph/mysql-test/oqgraph/generate_backing_table_tests_suite.sh
View file @
965bebcd
...
...
@@ -30,7 +30,8 @@ EOF
done
# These engines need an extra check to see if thy are compiled
ENGINES2
=
"innodb xtradb"
# Note, including innodb will also test xtradb
ENGINES2
=
"innodb"
for
ENGINE
in
$ENGINES2
;
do
cat
>
general-
$ENGINE
.test
<<
EOF
# This is a maintainer generated file. Generated at `date`.
...
...
storage/oqgraph/mysql-test/oqgraph/maintainer-general-record.sh
View file @
965bebcd
...
...
@@ -3,4 +3,3 @@ mysql-test/mysql-test-run --record oqgraph.general-MyISAM
mysql-test/mysql-test-run
--record
oqgraph.general-MEMORY
mysql-test/mysql-test-run
--record
oqgraph.general-Aria
mysql-test/mysql-test-run
--record
oqgraph.general-innodb
mysql-test/mysql-test-run
--record
oqgraph.general-xtradb
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