summaryrefslogtreecommitdiff
path: root/mysql-test/suite/encryption/t/aria_tiny.test
blob: cad63ed16f1215c2ec69b7f17af5b46cd46929d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#
# MDEV-8022 Assertion `rc == 0' failed in ma_encrypt on dropping an encrypted Aria table
#

--source include/have_file_key_management_plugin.inc

set global aria_encrypt_tables = 1;
create table t1 (i int, key(i)) engine=aria;
insert into t1 values (1);
drop table t1;
set global aria_encrypt_tables = 0;