mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 02:51:44 +01:00
19283c67c6
- InnoDB bulk insert fails to use encryption buffer for encrypting the temporary log file. Declare the m_crypt_block, m_crypt_pfx in row_merge_bulk_t to be used for encrypting the temporary file.
7 lines
195 B
Text
7 lines
195 B
Text
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;
|