mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
b33e9493a1
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''
8 lines
179 B
Text
8 lines
179 B
Text
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;
|