1drop table if exists t1;
2set names utf8;
3create table t1 (s1 int)
4partition by list (s1)
5(partition c values in (1),
6partition Ç values in (3));
7insert into t1 values (1),(3);
8select * from t1;
9s1
101
113
12flush tables;
13set names latin1;
14select * from t1;
15s1
161
173
18drop table t1;
19create table t1 (a varchar(1), primary key (a))
20partition by list (ascii(a))
21(partition p1 values in (65));
22ERROR HY000: This partition function is not allowed
23