mariadb/mysql-test/suite/mariabackup/xb_aws_key_management.result
Vladislav Vaintroub efc235d84d Fix test result.
in 10.3, AWS encryption key was loaded during recovery, by the innodb purge
thread, therefore no note "loaded key" was written by the foreground
thread.
2018-11-15 18:03:30 +01:00

14 lines
386 B
Text

CREATE TABLE t(c VARCHAR(10)) ENGINE INNODB encrypted=yes;
Warnings:
Note 1105 AWS KMS plugin: generated encrypted datakey for key id=1, version=1
Note 1105 AWS KMS plugin: loaded key 1, version 1, key length 128 bit
INSERT INTO t VALUES('foobar1');
# xtrabackup backup
# shutdown server
# remove datadir
# xtrabackup move back
# restart server
SELECT * from t;
c
foobar1
DROP TABLE t;