~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/myisam-blob.test

pandora-build v0.100 - Fixes several bugs found by cb1kenobi. Add several thoughts from folks at LCA.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
 
9
9
# Bug #2159 (Problem with update of blob to > 16M)
10
10
 
11
 
CREATE TABLE t1 (data LONGBLOB) ENGINE=myisam;
 
11
CREATE TEMPORARY TABLE t1 (data LONGBLOB) ENGINE=myisam;
12
12
INSERT INTO t1 (data) VALUES (NULL);
13
13
UPDATE t1 set data=repeat('a',18*1024*1024);
14
14
select length(data) from t1;
34
34
select length(data) from t1;
35
35
drop table t1;
36
36
 
37
 
CREATE TABLE t1 (data BLOB) ENGINE=myisam;
 
37
CREATE TEMPORARY TABLE t1 (data BLOB) ENGINE=myisam;
38
38
INSERT INTO t1 (data) VALUES (NULL);
39
39
UPDATE t1 set data=repeat('a',18*1024*1024);
40
40
select length(data) from t1;