~tsarev/percona-server/bug721176_2

« back to all changes in this revision

Viewing changes to mysql-test/memory_dynamic_rows.patch/percona_heap_bug784464_64bit.result

  • Committer: Oleg Tsarev
  • Date: 2011-09-06 06:23:48 UTC
  • mfrom: (158.1.1 bug840218_5.5)
  • Revision ID: oleg.tsarev@percona.com-20110906062348-82tdsfishbaxgo8v
1) move tests from mysql-test/ to patches
2) remove install_tests script and call of script from Makefile

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
CREATE TABLE t1 (f1 VARCHAR(32), f2 VARCHAR(32), f3 VARCHAR(32), f4 VARCHAR(32),
2
 
PRIMARY KEY (f1)) KEY_BLOCK_SIZE=124 ENGINE=HEAP ROW_FORMAT=DYNAMIC;
3
 
SHOW TABLE STATUS LIKE 't1';
4
 
Name    Engine  Version Row_format      Rows    Avg_row_length  Data_length     Max_data_length Index_length    Data_free       Auto_increment  Create_time     Update_time     Check_time      Collation       Checksum        Create_options  Comment
5
 
t1      MEMORY  10      Fixed   0       X       0       X       0       0       NULL    NULL    NULL    NULL    latin1_swedish_ci       NULL    row_format=DYNAMIC KEY_BLOCK_SIZE=124   
6
 
DROP TABLE t1;
7
 
CREATE TABLE t1 (f1 VARCHAR(32), f2 VARCHAR(96),
8
 
PRIMARY KEY (f1)) KEY_BLOCK_SIZE=122 ENGINE=HEAP ROW_FORMAT=DYNAMIC;
9
 
SHOW TABLE STATUS LIKE 't1';
10
 
Name    Engine  Version Row_format      Rows    Avg_row_length  Data_length     Max_data_length Index_length    Data_free       Auto_increment  Create_time     Update_time     Check_time      Collation       Checksum        Create_options  Comment
11
 
t1      MEMORY  10      Fixed   0       X       0       X       0       0       NULL    NULL    NULL    NULL    latin1_swedish_ci       NULL    row_format=DYNAMIC KEY_BLOCK_SIZE=122   
12
 
DROP TABLE t1;