summaryrefslogtreecommitdiff
path: root/mysql-test/r/windows.result
diff options
context:
space:
mode:
authorholyfoot/hf@mysql.com/hfmain.(none) <>2007-04-05 20:26:18 +0500
committerholyfoot/hf@mysql.com/hfmain.(none) <>2007-04-05 20:26:18 +0500
commitaef5543019f15793c06cac0d1c2c9ed229191a51 (patch)
tree41070ba6ea7018fc51307ddbda20f99d5b8f62b0 /mysql-test/r/windows.result
parent18a259076d463893db85aaf0047e8d4a1d7fee84 (diff)
downloadmariadb-git-aef5543019f15793c06cac0d1c2c9ed229191a51.tar.gz
bug #26074 Mysql crash creating partition
As we have unified paths inside partition engine, we should look for '/' as a path separator
Diffstat (limited to 'mysql-test/r/windows.result')
-rw-r--r--mysql-test/r/windows.result15
1 files changed, 15 insertions, 0 deletions
diff --git a/mysql-test/r/windows.result b/mysql-test/r/windows.result
index 7472b724f47..423123692e5 100644
--- a/mysql-test/r/windows.result
+++ b/mysql-test/r/windows.result
@@ -26,3 +26,18 @@ ERROR HY000: No paths allowed for shared library
execute abc;
ERROR HY000: No paths allowed for shared library
deallocate prepare abc;
+CREATE TABLE t1 (
+`pkid` int(11) NOT NULL AUTO_INCREMENT,
+`SALES_DATE` date NOT NULL DEFAULT '0000-00-00',
+KEY `pkid` (`pkid`)
+) ENGINE=InnoDB DEFAULT CHARSET=latin1
+PARTITION BY RANGE (MONTH(SALES_DATE))
+(
+PARTITION p0 VALUES LESS THAN (2) ENGINE=INNODB
+data DIRECTORY='c:/tmp/'
+ index DIRECTORY = 'c:/tmp/',
+PARTITION p1 VALUES LESS THAN (3) ENGINE=INNODB
+data DIRECTORY='c:/tmp/'
+ index DIRECTORY = 'c:/tmp/'
+);
+drop table t1;