summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/suite/tokudb/t/rows-32m-seq-insert.test
diff options
context:
space:
mode:
Diffstat (limited to 'storage/tokudb/mysql-test/suite/tokudb/t/rows-32m-seq-insert.test')
-rw-r--r--storage/tokudb/mysql-test/suite/tokudb/t/rows-32m-seq-insert.test36
1 files changed, 0 insertions, 36 deletions
diff --git a/storage/tokudb/mysql-test/suite/tokudb/t/rows-32m-seq-insert.test b/storage/tokudb/mysql-test/suite/tokudb/t/rows-32m-seq-insert.test
deleted file mode 100644
index 35dee174771..00000000000
--- a/storage/tokudb/mysql-test/suite/tokudb/t/rows-32m-seq-insert.test
+++ /dev/null
@@ -1,36 +0,0 @@
-# do a lot of longblob insertions up to 32MB-4 in size with seq primary key
-
-SET DEFAULT_STORAGE_ENGINE='tokudb';
-
---disable_warnings
-drop table if exists t;
---enable_warnings
-
-create table t (id int not null auto_increment primary key, v longblob not null);
-
-select @@max_allowed_packet into @my_max_allowed_packet;
---disable_warnings
-set global max_allowed_packet=100000000;
---enable_warnings
-
-connect(conn1,localhost,root,,);
-
-let $nrows=1000;
-let $maxid=$nrows;
-let $maxblob=32*1024*1024;
-while ($nrows) {
- eval insert into t (v) values (repeat('a',($maxblob-4)*rand()));
- dec $nrows;
-}
-
-connection default;
-disconnect conn1;
-set global max_allowed_packet=@my_max_allowed_packet;
-
-check table t;
-
-optimize table t;
-
-check table t;
-
-drop table t; \ No newline at end of file