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:
unknown 2006-07-29 18:11:19 +02:00
parent f21668a90f
commit a7ec90633c
2 changed files with 2 additions and 3 deletions

View file

@ -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,

View file

@ -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)