mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 03:21:53 +01:00
Merge mysql.com:/home/jimw/my/mysql-4.1-12328
into mysql.com:/home/jimw/my/mysql-4.1-clean
This commit is contained in:
commit
5ad0c87dd0
3 changed files with 11 additions and 1 deletions
4
mysql-test/include/not_windows.inc
Normal file
4
mysql-test/include/not_windows.inc
Normal file
|
@ -0,0 +1,4 @@
|
|||
--require r/true.require
|
||||
disable_query_log;
|
||||
select convert(@@version_compile_os using latin1) NOT IN ("Win32","Win64","Windows") as "TRUE";
|
||||
enable_query_log;
|
|
@ -1,5 +1,8 @@
|
|||
# Embedded server doesn't support external clients
|
||||
--source include/not_embedded.inc
|
||||
# Windows fails because it disconnects on too-large packets instead of just
|
||||
# swallowing them and returning an error
|
||||
--source include/not_windows.inc
|
||||
|
||||
#
|
||||
# Check protocol handling
|
||||
|
|
|
@ -3,7 +3,10 @@
|
|||
# RENAME TABLE work with MERGE tables on the slave.
|
||||
# Test of FLUSH NO_WRITE_TO_BINLOG by the way.
|
||||
#
|
||||
source include/master-slave.inc;
|
||||
--source include/master-slave.inc
|
||||
# Skipped on Windows because it can't handle a table underlying an open
|
||||
# merge table getting renamed.
|
||||
--source include/not_windows.inc
|
||||
|
||||
create table t1 (a int);
|
||||
insert into t1 values (10);
|
||||
|
|
Loading…
Add table
Reference in a new issue