mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
21 lines
266 B
Text
21 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
|