summaryrefslogtreecommitdiff
path: root/mysql-test/r/partition_symlink.result
diff options
context:
space:
mode:
authorunknown <mattiasj@witty.>2008-03-17 16:11:26 +0100
committerunknown <mattiasj@witty.>2008-03-17 16:11:26 +0100
commit166357b552fe777bc509ffcaeafeeeb5f0e3deed (patch)
treef03a6471a023f761cbe2452883b9a49bf8fe1b4b /mysql-test/r/partition_symlink.result
parent1bb10ccfb1344ae00f3874e4a725d876e03463b7 (diff)
downloadmariadb-git-166357b552fe777bc509ffcaeafeeeb5f0e3deed.tar.gz
Bug#35305: partition_symlink test failures
Updated the test due to bug 32167 Corrected spelling of error message mysql-test/r/partition_not_windows.result: Updated test result due to test case changes and corrected spelling error mysql-test/r/partition_symlink.result: Bug#35305: partition_symlink test failure Updated test result due to test case changes mysql-test/r/symlink.result: Updated test result due to test case changes and corrected spelling error mysql-test/t/disabled.def: Bug#35305: partition_symlink test failure Enable the test after it has been fixed mysql-test/t/partition_not_windows.test: Removed disable/enable_query_log for better result files mysql-test/t/partition_symlink.test: Bug#35305: partition_symlink test failure Changes due to bug 32167 mysql-test/t/symlink.test: using replace_result instead of disable_query_log sql/partition_info.cc: corrected spelling sql/sql_parse.cc: corrected spelling
Diffstat (limited to 'mysql-test/r/partition_symlink.result')
-rw-r--r--mysql-test/r/partition_symlink.result7
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/r/partition_symlink.result b/mysql-test/r/partition_symlink.result
index bb81e4f34da..eb92a4f733d 100644
--- a/mysql-test/r/partition_symlink.result
+++ b/mysql-test/r/partition_symlink.result
@@ -81,6 +81,13 @@ Got one of the listed errors
DROP DATABASE mysqltest2;
USE test;
DROP USER mysqltest_1@localhost;
+create table t2 (i int )
+partition by range (i)
+(
+partition p01 values less than (1000)
+data directory="MYSQLTEST_VARDIR/tmp"
+ index directory="MYSQLTEST_VARDIR/tmp"
+);
set @org_mode=@@sql_mode;
set @@sql_mode='NO_DIR_IN_CREATE';
select @@sql_mode;