summaryrefslogtreecommitdiff
path: root/mysql-test/suite/vcol/r/vcol_merge.result
blob: 4b5ed838c3a4445ecfd1fd60f8f5dcebf31fe72c (plain)
1
2
3
4
5
6
7
8
drop table if exists t1, t2, t3;
create table t1 (a int, b int as (a % 10));
create table t2 (a int, b int as (a % 10));
insert into t1 values (1,default);
insert into t2 values (2,default);
create table t3 (a int, b int as (a % 10)) engine=MERGE UNION=(t1,t2);
ERROR HY000: MRG_MYISAM storage engine does not support computed columns
drop table t1,t2;