mirror of
https://github.com/MariaDB/server.git
synced 2025-02-10 15:35:34 +01:00
![kurt](/assets/img/avatar_default.png)
Add a test related to the Encrypted Key File by following instructions in kb example https://mariadb.com/kb/en/file-key-management-encryption-plugin/#creating-the-key-file Reviewed by Daniel Black (with minor formatting and re-org of duplicate close(f) calls).
10 lines
630 B
Text
10 lines
630 B
Text
call mtr.add_suppression("the filekey is too long");
|
|
call mtr.add_suppression("Plugin 'file_key_management' init function returned error");
|
|
call mtr.add_suppression("Plugin 'file_key_management' registration.*failed");
|
|
FOUND 1 /the filekey is too long/ in mysqld.1.err
|
|
create table t1(c1 bigint not null, b char(200)) engine=innodb encrypted=yes encryption_key_id=1;
|
|
ERROR HY000: Can't create table `test`.`t1` (errno: 140 "Wrong create options")
|
|
select plugin_status from information_schema.plugins
|
|
where plugin_name = 'file_key_management';
|
|
plugin_status
|
|
# Test checks if opening an too large secret does not crash the server.
|