~percona-core/percona-server/5.5

« back to all changes in this revision

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

  • Committer: Alexey Kopytov
  • Date: 2011-09-07 14:00:24 UTC
  • mfrom: (140.1.19 merge)
  • Revision ID: akopytov@gmail.com-20110907140024-a8dvq86m5pxh9pxy
Manual merge from trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# 64-bit platform specific parts of tests for LP bug #784464
2
 
 
3
 
--source include/have_64bit.inc
4
 
 
5
 
CREATE TABLE t1 (f1 VARCHAR(32), f2 VARCHAR(32), f3 VARCHAR(32), f4 VARCHAR(32),
6
 
                PRIMARY KEY (f1)) KEY_BLOCK_SIZE=124 ENGINE=HEAP ROW_FORMAT=DYNAMIC;
7
 
--replace_column 6 X 8 X
8
 
SHOW TABLE STATUS LIKE 't1';
9
 
DROP TABLE t1;
10
 
 
11
 
CREATE TABLE t1 (f1 VARCHAR(32), f2 VARCHAR(96),
12
 
                PRIMARY KEY (f1)) KEY_BLOCK_SIZE=122 ENGINE=HEAP ROW_FORMAT=DYNAMIC;
13
 
--replace_column 6 X 8 X
14
 
SHOW TABLE STATUS LIKE 't1';
15
 
DROP TABLE t1;