diff options
author | unknown <venu@myvenu.com> | 2003-04-30 00:07:37 -0700 |
---|---|---|
committer | unknown <venu@myvenu.com> | 2003-04-30 00:07:37 -0700 |
commit | b85712945457d5455f603678f8bcb15d2f929e82 (patch) | |
tree | 19e2ae7cf49f8bfd63f42100781c94f9338f4e54 /mysql-test/r/isam.result | |
parent | 05af39d59102c5b46f71ca4d3626feba2c3c777a (diff) | |
download | mariadb-git-b85712945457d5455f603678f8bcb15d2f929e82.tar.gz |
Updated warning test
Updated all tests to catchup warnings for all field conversions
mysql-test/t/ctype_many.test:
Disable the warnings for misc conversion
mysql-test/t/warnings.test:
More warning tests
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)) |