1#
2# test of primary key conversions
3#
4
5--disable_warnings
6drop table if exists t1;
7--enable_warnings
8
9create table t1 (t1 char(3) primary key);
10insert into t1 values("ABC");
11insert into t1 values("ABA");
12insert into t1 values("AB%");
13select * from t1 where t1="ABC";
14select * from t1 where t1="ABCD";
15select * from t1 where t1 like "a_\%";
16describe select * from t1 where t1="ABC";
17describe select * from t1 where t1="ABCD";
18drop table t1;
19
20# End of 4.1 tests
21