summaryrefslogtreecommitdiff
path: root/mysql-test/suite/mariabackup/xb_compressed_encrypted.result
blob: 22a4c151b0765edc7bcb697b205a918a403f9418 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
CREATE TABLE t1(c1 INT, b VARCHAR(2400), index(b(100),c1))
ENGINE=INNODB ROW_FORMAT=compressed ENCRYPTED=YES;
BEGIN;
COMMIT;
# xtrabackup backup
drop table t1;
# shutdown server
# remove datadir
# xtrabackup move back
# restart
select sum(c1) from t1;
sum(c1)
12497500
DROP TABLE t1;