summaryrefslogtreecommitdiff
path: root/mysql-test/r/windows.result
diff options
context:
space:
mode:
authorjimw@mysql.com <>2005-08-31 18:32:15 -0700
committerjimw@mysql.com <>2005-08-31 18:32:15 -0700
commit00b17c1c171e65df99d793de0653490a37291099 (patch)
treea60bbdc85012c14e9a336099e853fddfb6062bad /mysql-test/r/windows.result
parent16e30aaf68012e4c4b0a7e7beb65dec4cfa60e3b (diff)
downloadmariadb-git-00b17c1c171e65df99d793de0653490a37291099.tar.gz
Fix handling of filenames that start the same as reserved filenames
on Windows. (Bug #12325)
Diffstat (limited to 'mysql-test/r/windows.result')
-rw-r--r--mysql-test/r/windows.result8
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/r/windows.result b/mysql-test/r/windows.result
new file mode 100644
index 00000000000..039c5b1476e
--- /dev/null
+++ b/mysql-test/r/windows.result
@@ -0,0 +1,8 @@
+use lpt1;
+ERROR 42000: Unknown database 'lpt1'
+use com1;
+ERROR 42000: Unknown database 'com1'
+use prn;
+ERROR 42000: Unknown database 'prn'
+create table nu (a int);
+drop table nu;