diff options
author | Sergei Golubchik <sergii@pisem.net> | 2014-04-11 11:42:51 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2014-04-11 11:42:51 +0200 |
commit | a0ea7ffade17110b308ae8f7bd69746adce6b6e0 (patch) | |
tree | 6b05d8f3308c4ee3a5a3030d1a280d4b066a3d44 /mysql-test/suite/heap | |
parent | 27a26acb1cbff0e17ac8565b515ce92ab980afea (diff) | |
download | mariadb-git-a0ea7ffade17110b308ae8f7bd69746adce6b6e0.tar.gz |
fix the test for 32-bit
Diffstat (limited to 'mysql-test/suite/heap')
-rw-r--r-- | mysql-test/suite/heap/heap.test | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/suite/heap/heap.test b/mysql-test/suite/heap/heap.test index 106ece540a4..452d885c9ae 100644 --- a/mysql-test/suite/heap/heap.test +++ b/mysql-test/suite/heap/heap.test @@ -572,7 +572,9 @@ CREATE TABLE t1 (id INT); INSERT INTO t1 VALUES (1); INSERT INTO t1 VALUES (2); +--disable_warnings SET @@max_heap_table_size = 1024*1024*1024*20; +--enable_warnings CREATE TEMPORARY TABLE tmp ENGINE=MEMORY SELECT id FROM t1; |