summaryrefslogtreecommitdiff
path: root/mysql-test/suite/encryption/r/bulk_insert.result
blob: 840cb0cd38bae00a620f4f39a09cbf839a632ded (plain)
1
2
3
4
5
6
7
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;