summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/tokudb_bugs/r/expand_tinytext_text.result
blob: dd517562a1ba912a197fa330acadac1966fe7f5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
set default_storage_engine='tokudb';
drop table if exists t;
create table t (u tinytext, v text);
insert into t values ('hi', 'there');
select * from t;
u	v
hi	there
alter table t change column u u text;
select * from t;
u	v
hi	there
drop table t;