~stewart/percona-server/bug693415

« back to all changes in this revision

Viewing changes to mysql-test/memory_dynamic_rows.patch/percona_heap_bug789131.test

  • Committer: Laurynas Biveinis
  • Date: 2011-06-06 10:34:16 UTC
  • Revision ID: laurynas.biveinis@percona.com-20110606103416-0jpkmypoy45aqh3i
Port the dynamic VARCHAR/HEAP support in MEMORY storage engine from
https://code.launchpad.net/~percona-dev/percona-server/mysql-55-eb

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Bug #789131: Valgrind warning in MyISAM in mysql-55-eb-blobs
 
3
#
 
4
 
 
5
CREATE TABLE t1 (f1 VARCHAR (128), f2 VARCHAR (128), f3 VARBINARY (512),
 
6
                f4 TEXT (65525), f5 VARCHAR (128), KEY (f1(1))) ENGINE=HEAP;
 
7
 
 
8
INSERT IGNORE INTO t1 VALUES 
 
9
       ( 'o' , "" , NULL , "" , 0 ) , 
 
10
       (NULL, "" , "" , "" , 'f' ) ;
 
11
 
 
12
INSERT IGNORE INTO t1 SELECT * FROM t1;
 
13
 
 
14
DROP TABLE t1;
 
 
b'\\ No newline at end of file'