Skip to content

Commit

Permalink
add updated result file for MDEV-13802 test.
Browse files Browse the repository at this point in the history
  • Loading branch information
vaintroub committed Sep 15, 2017
1 parent a07b537 commit c2815c7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions mysql-test/suite/mariabackup/lock_ddl_per_table.result
Original file line number Diff line number Diff line change
@@ -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`;

0 comments on commit c2815c7

Please sign in to comment.