summaryrefslogtreecommitdiff
path: root/mysql-test/r/isam.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/r/isam.result')
-rw-r--r--mysql-test/r/isam.result8
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))