~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Eric Day
  • Date: 2009-08-27 07:26:22 UTC
  • mto: This revision was merged to the branch mainline in revision 1131.
  • Revision ID: eday@oddments.org-20090827072622-72te13ua0wdlc2ky
Reworked listen interface to not require binding of TCP ports.

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;