mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 12:32:27 +01:00
Add missing delimiter in subselect test
mysql-test/r/subselect.result: Add missing semicolon delimiter and junk caused by that mysql-test/t/subselect.test: Add missing semicolon delimiter
This commit is contained in:
parent
f21668a90f
commit
a7ec90633c
2 changed files with 2 additions and 3 deletions
|
@ -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,
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue