summaryrefslogtreecommitdiff
path: root/mysql-test/r/myisam-blob.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/r/myisam-blob.result')
-rw-r--r--mysql-test/r/myisam-blob.result3
1 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/r/myisam-blob.result b/mysql-test/r/myisam-blob.result
index 6b41a244621..46be1bdbd49 100644
--- a/mysql-test/r/myisam-blob.result
+++ b/mysql-test/r/myisam-blob.result
@@ -28,6 +28,7 @@ INSERT INTO t1 set data=repeat('a',18*1024*1024);
select length(data) from t1;
length(data)
18874368
+SET STATEMENT sql_mode = 'NO_ENGINE_SUBSTITUTION' FOR
alter table t1 modify data blob;
Warnings:
Warning 1265 Data truncated for column 'data' at row 1
@@ -37,7 +38,7 @@ length(data)
drop table t1;
CREATE TABLE t1 (data BLOB) ENGINE=myisam;
INSERT INTO t1 (data) VALUES (NULL);
-UPDATE t1 set data=repeat('a',18*1024*1024);
+UPDATE IGNORE t1 set data=repeat('a',18*1024*1024);
Warnings:
Warning 1265 Data truncated for column 'data' at row 1
select length(data) from t1;