1
0
mirror of https://github.com/MariaDB/server.git synced 2025-05-25 13:42:52 +03:00
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

21 lines
266 B
Plaintext

# 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