summaryrefslogtreecommitdiff
path: root/mysql-test/t/windows.test
blob: d6bcfeb8cb3c17791dbe3a55ce5b0fc72b72149f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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