diff options
author | venu@myvenu.com <> | 2003-04-30 00:07:37 -0700 |
---|---|---|
committer | venu@myvenu.com <> | 2003-04-30 00:07:37 -0700 |
commit | 72196c9b16c89407d392f4fb2e0c125a5141408b (patch) | |
tree | 19e2ae7cf49f8bfd63f42100781c94f9338f4e54 /mysql-test/r/isam.result | |
parent | eb137c063c05b2511eed85f0027498d64a910e11 (diff) | |
download | mariadb-git-72196c9b16c89407d392f4fb2e0c125a5141408b.tar.gz |
Updated warning test
Updated all tests to catchup warnings for all field conversions
Diffstat (limited to 'mysql-test/r/isam.result')
-rw-r--r-- | mysql-test/r/isam.result | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/r/isam.result b/mysql-test/r/isam.result index 7871e899773..7032e506b91 100644 --- a/mysql-test/r/isam.result +++ b/mysql-test/r/isam.result @@ -1,5 +1,13 @@ drop table if exists t1,t2; create table t1 (a tinyint not null auto_increment, b blob not null, primary key (a)) type=isam; +Warnings: +Warning 1263 Data truncated for column 'b' at row 1 +Warnings: +Warning 1263 Data truncated for column 'b' at row 1 +Warnings: +Warning 1263 Data truncated for column 'b' at row 1 +Warnings: +Warning 1263 Data truncated for column 'b' at row 1 delete from t1 where (a & 1); select sum(length(b)) from t1; sum(length(b)) |