summaryrefslogtreecommitdiff
path: root/mysql-test/t/windows.test
diff options
context:
space:
mode:
authorunknown <iggy@recycle.(none)>2007-04-24 16:07:52 -0400
committerunknown <iggy@recycle.(none)>2007-04-24 16:07:52 -0400
commit006d9d65788be02d16911c5ca96bfc618615ff56 (patch)
tree0f97e1ddddcc6db80d4aa27a7859f7784c7aaba4 /mysql-test/t/windows.test
parent742c70b0a06bc854ec48c26cda363e7f38527094 (diff)
downloadmariadb-git-006d9d65788be02d16911c5ca96bfc618615ff56.tar.gz
- Resolved conflict between fixes for bugs 25141 and 26074.
- Use the 25141 fix. - 26074 is duplicate, as 25141 has more comprehensive test mysql-test/r/windows.result: - Removed duplicate results. mysql-test/t/windows.test: - Removed InnoDB requirement. - Removed duplicate test case. sql/ha_partition.cc: - Reverted changes from bug 26074 because it conflicts with bug 25141.
Diffstat (limited to 'mysql-test/t/windows.test')
-rw-r--r--mysql-test/t/windows.test21
1 files changed, 0 insertions, 21 deletions
diff --git a/mysql-test/t/windows.test b/mysql-test/t/windows.test
index efdf0963b80..a10d54b5452 100644
--- a/mysql-test/t/windows.test
+++ b/mysql-test/t/windows.test
@@ -1,6 +1,5 @@
# Windows-specific tests
--source include/windows.inc
--- source include/have_innodb.inc
#
# Bug 9148: Denial of service
@@ -50,23 +49,3 @@ execute abc;
execute abc;
deallocate prepare abc;
-#
-# Bug #26074 Mysql crash when creating partitions
-#
-
-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;