summaryrefslogtreecommitdiff
path: root/mysql-test/suite/mariabackup/lock_ddl_per_table.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/mariabackup/lock_ddl_per_table.result')
-rw-r--r--mysql-test/suite/mariabackup/lock_ddl_per_table.result7
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/suite/mariabackup/lock_ddl_per_table.result b/mysql-test/suite/mariabackup/lock_ddl_per_table.result
index d0137a1e072..434b6852530 100644
--- a/mysql-test/suite/mariabackup/lock_ddl_per_table.result
+++ b/mysql-test/suite/mariabackup/lock_ddl_per_table.result
@@ -1,4 +1,11 @@
CREATE TABLE t(i INT) ENGINE INNODB;
INSERT INTO t VALUES(1);
# xtrabackup backup
+CREATE TABLE `bobby``tables` (id INT, name VARCHAR(50), purchased DATE) ENGINE INNODB PARTITION BY RANGE( YEAR(purchased) ) (
+PARTITION p0 VALUES LESS THAN (1990),
+PARTITION p1 VALUES LESS THAN (1995),
+PARTITION p2 VALUES LESS THAN (2000),
+PARTITION p3 VALUES LESS THAN (2005)
+) ;
DROP TABLE t;
+DROP TABLE `bobby``tables`;