mariadb/mysql-test/t/windows.test
svoj@mysql.com/april.(none) d9e92fbd9e BUG#22924 - windows test fails with wrong errno
Fixed a test case according to fix for bug10974.
2006-10-03 16:50:15 +05:00

20 lines
266 B
Text

# Windows-specific tests
--source include/windows.inc
#
# Bug 9148: Denial of service
#
--error 1049
use lpt1;
--error 1049
use com1;
--error 1049
use prn;
#
# Bug #12325: Can't create table named 'nu'
#
create table nu (a int);
drop table nu;
# End of 4.1 tests