mirror of
https://github.com/MariaDB/server.git
synced 2025-01-26 00:34:18 +01:00
Merge bk-internal:/home/bk/mysql-5.1-new-ndb
into pippilotta.erinye.com:/shared/home/df/mysql/build/mysql-5.1-build-work-nn
This commit is contained in:
commit
4e33ca3184
5 changed files with 19 additions and 14 deletions
|
@ -153,6 +153,11 @@ IF(EMBED_MANIFESTS)
|
||||||
# Disable automatic manifest generation.
|
# Disable automatic manifest generation.
|
||||||
STRING(REPLACE "/MANIFEST" "/MANIFEST:NO" CMAKE_EXE_LINKER_FLAGS
|
STRING(REPLACE "/MANIFEST" "/MANIFEST:NO" CMAKE_EXE_LINKER_FLAGS
|
||||||
${CMAKE_EXE_LINKER_FLAGS})
|
${CMAKE_EXE_LINKER_FLAGS})
|
||||||
|
# Explicitly disable it since it is the default for newer versions of VS
|
||||||
|
STRING(REGEX MATCH "MANIFEST:NO" tmp_manifest ${CMAKE_EXE_LINKER_FLAGS})
|
||||||
|
IF(NOT tmp_manifest)
|
||||||
|
SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /MANIFEST:NO")
|
||||||
|
ENDIF(tmp_manifest)
|
||||||
# Set the processor architecture.
|
# Set the processor architecture.
|
||||||
IF(CMAKE_GENERATOR MATCHES "Visual Studio 8 2005 Win64")
|
IF(CMAKE_GENERATOR MATCHES "Visual Studio 8 2005 Win64")
|
||||||
SET(PROCESSOR_ARCH "X64")
|
SET(PROCESSOR_ARCH "X64")
|
||||||
|
|
|
@ -127,6 +127,12 @@ test-bt:
|
||||||
@PERL@ ./mysql-test-run.pl --force --comment=funcs1_ps --ps-protocol --suite=funcs_1
|
@PERL@ ./mysql-test-run.pl --force --comment=funcs1_ps --ps-protocol --suite=funcs_1
|
||||||
-cd mysql-test ; MTR_BUILD_THREAD=auto \
|
-cd mysql-test ; MTR_BUILD_THREAD=auto \
|
||||||
@PERL@ ./mysql-test-run.pl --force --comment=funcs2 --suite=funcs_2
|
@PERL@ ./mysql-test-run.pl --force --comment=funcs2 --suite=funcs_2
|
||||||
|
-cd mysql-test ; MTR_BUILD_THREAD=auto \
|
||||||
|
@PERL@ ./mysql-test-run.pl --force --comment=rpl --suite=rpl
|
||||||
|
-cd mysql-test ; MTR_BUILD_THREAD=auto \
|
||||||
|
@PERL@ ./mysql-test-run.pl --force --comment=partitions --suite=parts
|
||||||
|
-cd mysql-test ; MTR_BUILD_THREAD=auto \
|
||||||
|
@PERL@ ./mysql-test-run.pl --force --comment=jp --suite=jp
|
||||||
|
|
||||||
test-bt-debug:
|
test-bt-debug:
|
||||||
-cd mysql-test ; MTR_BUILD_THREAD=auto \
|
-cd mysql-test ; MTR_BUILD_THREAD=auto \
|
||||||
|
@ -151,7 +157,7 @@ test-ext-rpl:
|
||||||
|
|
||||||
test-ext-partitions:
|
test-ext-partitions:
|
||||||
cd mysql-test ; \
|
cd mysql-test ; \
|
||||||
@PERL@ ./mysql-test-run.pl --force --suite=partitions
|
@PERL@ ./mysql-test-run.pl --force --suite=parts
|
||||||
|
|
||||||
test-ext-jp:
|
test-ext-jp:
|
||||||
cd mysql-test ; \
|
cd mysql-test ; \
|
||||||
|
|
|
@ -1,14 +1,12 @@
|
||||||
drop table if exists t1;
|
drop table if exists t1;
|
||||||
SHOW GLOBAL VARIABLES LIKE "%_format%";
|
SHOW GLOBAL VARIABLES WHERE Variable_name LIKE "%_format%" AND Variable_name != "binlog_format";
|
||||||
Variable_name Value
|
Variable_name Value
|
||||||
binlog_format <format>
|
|
||||||
date_format %d.%m.%Y
|
date_format %d.%m.%Y
|
||||||
datetime_format %Y-%m-%d %H:%i:%s
|
datetime_format %Y-%m-%d %H:%i:%s
|
||||||
default_week_format 0
|
default_week_format 0
|
||||||
time_format %H.%i.%s
|
time_format %H.%i.%s
|
||||||
SHOW SESSION VARIABLES LIKE "%_format%";
|
SHOW SESSION VARIABLES WHERE Variable_name LIKE "%_format%" AND Variable_name != "binlog_format";
|
||||||
Variable_name Value
|
Variable_name Value
|
||||||
binlog_format <format>
|
|
||||||
date_format %d.%m.%Y
|
date_format %d.%m.%Y
|
||||||
datetime_format %Y-%m-%d %H:%i:%s
|
datetime_format %Y-%m-%d %H:%i:%s
|
||||||
default_week_format 0
|
default_week_format 0
|
||||||
|
@ -30,9 +28,8 @@ set datetime_format= '%H:%i:%s %Y-%m-%d';
|
||||||
set datetime_format= '%H:%i:%s.%f %m-%d-%Y';
|
set datetime_format= '%H:%i:%s.%f %m-%d-%Y';
|
||||||
set datetime_format= '%h:%i:%s %p %Y-%m-%d';
|
set datetime_format= '%h:%i:%s %p %Y-%m-%d';
|
||||||
set datetime_format= '%h:%i:%s.%f %p %Y-%m-%d';
|
set datetime_format= '%h:%i:%s.%f %p %Y-%m-%d';
|
||||||
SHOW SESSION VARIABLES LIKE "%format";
|
SHOW SESSION VARIABLES WHERE Variable_name LIKE "%format" AND Variable_name != "binlog_format";
|
||||||
Variable_name Value
|
Variable_name Value
|
||||||
binlog_format <format>
|
|
||||||
date_format %m-%d-%Y
|
date_format %m-%d-%Y
|
||||||
datetime_format %h:%i:%s.%f %p %Y-%m-%d
|
datetime_format %h:%i:%s.%f %p %Y-%m-%d
|
||||||
default_week_format 0
|
default_week_format 0
|
||||||
|
|
|
@ -6,10 +6,8 @@
|
||||||
drop table if exists t1;
|
drop table if exists t1;
|
||||||
--enable_warnings
|
--enable_warnings
|
||||||
|
|
||||||
--replace_result ROW <format> STATEMENT <format> MIXED <format>
|
SHOW GLOBAL VARIABLES WHERE Variable_name LIKE "%_format%" AND Variable_name != "binlog_format";
|
||||||
SHOW GLOBAL VARIABLES LIKE "%_format%";
|
SHOW SESSION VARIABLES WHERE Variable_name LIKE "%_format%" AND Variable_name != "binlog_format";
|
||||||
--replace_result ROW <format> STATEMENT <format> MIXED <format>
|
|
||||||
SHOW SESSION VARIABLES LIKE "%_format%";
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Test setting a lot of different formats to see which formats are accepted and
|
# Test setting a lot of different formats to see which formats are accepted and
|
||||||
|
@ -36,8 +34,7 @@ set datetime_format= '%H:%i:%s.%f %m-%d-%Y';
|
||||||
set datetime_format= '%h:%i:%s %p %Y-%m-%d';
|
set datetime_format= '%h:%i:%s %p %Y-%m-%d';
|
||||||
set datetime_format= '%h:%i:%s.%f %p %Y-%m-%d';
|
set datetime_format= '%h:%i:%s.%f %p %Y-%m-%d';
|
||||||
|
|
||||||
--replace_result ROW <format> STATEMENT <format> MIXED <format>
|
SHOW SESSION VARIABLES WHERE Variable_name LIKE "%format" AND Variable_name != "binlog_format";
|
||||||
SHOW SESSION VARIABLES LIKE "%format";
|
|
||||||
|
|
||||||
--error 1231
|
--error 1231
|
||||||
SET time_format='%h:%i:%s';
|
SET time_format='%h:%i:%s';
|
||||||
|
|
Loading…
Add table
Reference in a new issue