summaryrefslogtreecommitdiff
path: root/mysql-test/suite/mariabackup/xb_fulltext_encrypted.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/mariabackup/xb_fulltext_encrypted.result')
-rw-r--r--mysql-test/suite/mariabackup/xb_fulltext_encrypted.result14
1 files changed, 14 insertions, 0 deletions
diff --git a/mysql-test/suite/mariabackup/xb_fulltext_encrypted.result b/mysql-test/suite/mariabackup/xb_fulltext_encrypted.result
new file mode 100644
index 00000000000..01a99e59200
--- /dev/null
+++ b/mysql-test/suite/mariabackup/xb_fulltext_encrypted.result
@@ -0,0 +1,14 @@
+CREATE TABLE film_text (
+film_id SMALLINT NOT NULL,
+title VARCHAR(255) NOT NULL,
+description TEXT,
+PRIMARY KEY (film_id),
+FULLTEXT KEY idx_title_description (title,description),
+FULLTEXT KEY (description),
+FULLTEXT KEY (title)
+)ENGINE=InnoDB DEFAULT CHARSET=utf8 ENCRYPTED=YES;
+# shutdown server
+# remove datadir
+# xtrabackup move back
+# restart server
+drop table film_text;