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
a0e706ad
Commit
a0e706ad
authored
Jul 29, 2006
by
msvensson@shellback.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing delimiter in subselect test
parent
768a77d3
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
mysql-test/r/subselect.result
mysql-test/r/subselect.result
+1
-2
mysql-test/t/subselect.test
mysql-test/t/subselect.test
+1
-1
No files found.
mysql-test/r/subselect.result
View file @
a0e706ad
...
...
@@ -2717,8 +2717,7 @@ select (1,2,3) = (select * from t1);
ERROR 21000: Operand should contain 3 column(s)
select (select * from t1) = (1,2,3);
ERROR 21000: Operand should contain 2 column(s)
drop table t1
#;
drop table t1;
CREATE TABLE `t1` (
`itemid` bigint(20) unsigned NOT NULL auto_increment,
`sessionid` bigint(20) unsigned default NULL,
...
...
mysql-test/t/subselect.test
View file @
a0e706ad
...
...
@@ -1728,7 +1728,7 @@ select (select a from t1) = (1,2);
select
(
1
,
2
,
3
)
=
(
select
*
from
t1
);
--
error
1241
select
(
select
*
from
t1
)
=
(
1
,
2
,
3
);
drop
table
t1
drop
table
t1
;
#
# Item_int_with_ref check (BUG#10020)
...
...
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