summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladislav Vaintroub <wlad@mariadb.com>2017-09-15 20:44:03 +0000
committerVladislav Vaintroub <wlad@mariadb.com>2017-09-15 20:44:03 +0000
commitc2815c7c2c7f9dcf4e9f241e10d154faf561103f (patch)
tree3c1093c460c48b6745d17965b389d026bc2c2d53
parenta07b537b396b587460e721689286e38bf793cf5f (diff)
downloadmariadb-git-c2815c7c2c7f9dcf4e9f241e10d154faf561103f.tar.gz
add updated result file for MDEV-13802 test.
-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`;