summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/encryption/t/bulk_insert.test
blob: ce7804cb4e0673ee7f7eb98c6e33cbdf7cd7ed95 (plain)
1
2
3
4
5
6
7
8
9
10
11
--source include/have_innodb.inc
--source include/have_sequence.inc
--source include/have_file_key_management_plugin.inc

SET UNIQUE_CHECKS=0, FOREIGN_KEY_CHECKS=0;
CREATE TABLE t1 (
  `id` int(10) unsigned NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB;
INSERT INTO t1 SELECT seq FROM seq_1_to_65536;
DROP TABLE t1;