1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

rename table attribute ENCRYPTION=ON/OFF to ENCRYPTED=YES/NO

This commit is contained in:
Sergei Golubchik
2015-04-09 17:59:34 +02:00
parent ea764f5f52
commit bc9f118e29
20 changed files with 105 additions and 105 deletions

View File

@ -11,7 +11,7 @@ call mtr.add_suppression("Plugin 'file_key_management' registration.*failed");
--source include/search_pattern_in_file.inc
--error ER_CANT_CREATE_TABLE
create table t1(c1 bigint not null, b char(200)) engine=innodb encryption='on' encryption_key_id=1;
create table t1(c1 bigint not null, b char(200)) engine=innodb encrypted=yes encryption_key_id=1;
select plugin_status from information_schema.plugins
where plugin_name = 'file_key_management';

View File

@ -1,7 +1,7 @@
-- source include/have_xtradb.inc
-- source filekeys_plugin.inc
create table t1(c1 bigint not null, b char(200)) engine=innodb encryption='on' encryption_key_id=1;
create table t1(c1 bigint not null, b char(200)) engine=innodb encrypted=yes encryption_key_id=1;
show create table t1;
insert t1 values (12345, repeat('1234567890', 20));