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
e92058de
Commit
e92058de
authored
May 31, 2013
by
Andrew McDonnell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added some tests for bogus latch
parent
94858930
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
mysql-test/suite/oqgraph/basic.test
mysql-test/suite/oqgraph/basic.test
+12
-0
No files found.
mysql-test/suite/oqgraph/basic.test
View file @
e92058de
...
@@ -64,6 +64,18 @@ SELECT * FROM graph WHERE latch='1' AND origid=4 AND destid=1;
...
@@ -64,6 +64,18 @@ SELECT * FROM graph WHERE latch='1' AND origid=4 AND destid=1;
SELECT
*
FROM
graph
WHERE
latch
=
'no_search'
and
destid
=
2
and
origid
=
1
;
SELECT
*
FROM
graph
WHERE
latch
=
'no_search'
and
destid
=
2
and
origid
=
1
;
#--breadth first with no orig id etc
SELECT
*
FROM
graph
WHERE
latch
=
'breadth_first'
;
--
echo
# Expect no result, because of invalid latch
SELECT
*
FROM
graph
WHERE
latch
=
'bogus'
;
SELECT
*
FROM
graph
WHERE
latch
=
666
;
SELECT
*
FROM
graph
WHERE
latch
=
'bogus'
and
destid
=
2
and
origid
=
1
;
--
echo
# Make sure we dont crash if someone passed in a UTF string
SELECT
*
FROM
graph
WHERE
latch
=
'Ohms Ω Tennis Ball 〄'
;
--
echo
# Expect no result, because of autocast and deprecated syntax
--
echo
# Expect no result, because of autocast and deprecated syntax
SELECT
*
FROM
graph
WHERE
latch
=
0
and
destid
=
2
and
origid
=
1
;
SELECT
*
FROM
graph
WHERE
latch
=
0
and
destid
=
2
and
origid
=
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