summaryrefslogtreecommitdiff
path: root/mysql-test/t/create_not_windows.test
diff options
context:
space:
mode:
authorunknown <anjuta@arthur.local>2006-06-04 21:27:41 +0300
committerunknown <anjuta@arthur.local>2006-06-04 21:27:41 +0300
commit8b6806800ada3472ae678ead6d9d52e89bc7fa05 (patch)
tree9074fe73b23e1b768a1d39790b42f5a59eb1add0 /mysql-test/t/create_not_windows.test
parent59a33015b461216c22fdf51585a53c9afecf9bfb (diff)
downloadmariadb-git-8b6806800ada3472ae678ead6d9d52e89bc7fa05.tar.gz
BUG#19479: mysqldump creates invalid dump
Moved the test case to separate non-windows specific file. mysql-test/r/create.result: Moved non-windows specific test case to create_not_windows.test. mysql-test/t/create.test: Moved non-windows specific test case to create_not_windows.test. mysql-test/r/create_not_windows.result: #19479: mysqldump creates invalid dump Moved the non-windows specific test case from create.test. mysql-test/t/create_not_windows.test: #19479: mysqldump creates invalid dump Moved the non-windows specific test case from create.test.
Diffstat (limited to 'mysql-test/t/create_not_windows.test')
-rw-r--r--mysql-test/t/create_not_windows.test20
1 files changed, 20 insertions, 0 deletions
diff --git a/mysql-test/t/create_not_windows.test b/mysql-test/t/create_not_windows.test
new file mode 100644
index 00000000000..71ad9ccd7fe
--- /dev/null
+++ b/mysql-test/t/create_not_windows.test
@@ -0,0 +1,20 @@
+# Non-windows specific create tests.
+
+--source include/not_windows.inc
+
+#
+# Bug#19479:mysqldump creates invalid dump
+#
+--disable_warnings
+drop table if exists `about:text`;
+--enable_warnings
+create table `about:text` (
+_id int not null auto_increment,
+`about:text` varchar(255) not null default '',
+primary key (_id)
+);
+
+show create table `about:text`;
+drop table `about:text`;
+
+# End of 5.0 tests