diff options
author | unknown <jimw@mysql.com> | 2005-08-31 18:32:15 -0700 |
---|---|---|
committer | unknown <jimw@mysql.com> | 2005-08-31 18:32:15 -0700 |
commit | f8452cbc6226cc4a6662706a2b5f768a107d3cb4 (patch) | |
tree | a60bbdc85012c14e9a336099e853fddfb6062bad /mysql-test/r/windows.result | |
parent | cf57c3cfb9d5aa5793ca78d32da6f4cb40e0d79b (diff) | |
download | mariadb-git-f8452cbc6226cc4a6662706a2b5f768a107d3cb4.tar.gz |
Fix handling of filenames that start the same as reserved filenames
on Windows. (Bug #12325)
mysql-test/r/lowercase_table.result:
Update results
mysql-test/t/lowercase_table.test:
Move test to new windows.test, since it is Windows-specific
mysys/my_access.c:
Check that we've matched the whole forbidden name.
mysql-test/include/windows.inc:
New BitKeeper file ``mysql-test/include/windows.inc''
mysql-test/r/windows.result:
New BitKeeper file ``mysql-test/r/windows.result''
mysql-test/t/windows.test:
New BitKeeper file ``mysql-test/t/windows.test''
Diffstat (limited to 'mysql-test/r/windows.result')
-rw-r--r-- | mysql-test/r/windows.result | 8 |
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; |