1set default_storage_engine='tokudb';
2drop table if exists t1;
3SET SQL_WARNINGS=1;
4create table t1 (this int unsigned);
5insert into t1 values (1);
6insert into t1 values (-1);
7Warnings:
8Warning	1264	Out of range value for column 'this' at row 1
9insert into t1 values ('5000000000');
10Warnings:
11Warning	1264	Out of range value for column 'this' at row 1
12select * from t1;
13this
141
150
164294967295
17drop table t1;
18