| Current Path : /usr/share/mysql-test/t/ |
| Current File : //usr/share/mysql-test/t/type_uint.test |
#
# test of unsigned int
#
--disable_warnings
drop table if exists t1;
--enable_warnings
SET SQL_WARNINGS=1;
create table t1 (this int unsigned);
insert into t1 values (1);
insert into t1 values (-1);
insert into t1 values ('5000000000');
select * from t1;
drop table t1;
# End of 4.1 tests