mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Merge hh-nb.hungers:/work/trees/mysql-5.1-build-src-clean
into hh-nb.hungers:/work/merge/mysql-5.1-build BitKeeper/etc/ignore: auto-union mysql-test/t/disabled.def: Auto merged BitKeeper/deleted/.del-group_concat_max_len_func.result: Delete: mysql-test/r/group_concat_max_len_func.result BitKeeper/deleted/.del-group_concat_max_len_func.test: Delete: mysql-test/t/group_concat_max_len_func.test BitKeeper/deleted/.del-max_allowed_packet_func.test: Delete: mysql-test/t/max_allowed_packet_func.test
This commit is contained in:
@ -21,4 +21,5 @@ ps_ddl : Bug#12093 2007-12-14 pending WL#4165 / WL#4166
|
||||
csv_alter_table : Bug#33696 2008-01-21 pcrews no .result file - bug allows NULL columns in CSV tables
|
||||
event_scheduler_basic: BUG#35997 server seems to crash.
|
||||
event_scheduler_func: BUG#35997 server seems to crash.
|
||||
thread_cache_size_func: BUG#35988 Due to not deterministic results
|
||||
|
||||
|
@ -19,6 +19,7 @@
|
||||
# #
|
||||
###############################################################################
|
||||
|
||||
SET @save = @@global.group_concat_max_len;
|
||||
|
||||
--disable_warnings
|
||||
drop table if exists t1;
|
||||
@ -124,4 +125,7 @@ DROP table t1;
|
||||
DISCONNECT test_con2;
|
||||
DISCONNECT test_con1;
|
||||
|
||||
connection default;
|
||||
|
||||
SET @@group_concat_max_len = @save;
|
||||
|
||||
|
@ -19,6 +19,8 @@
|
||||
# #
|
||||
###############################################################################
|
||||
|
||||
#due to lost connection on win64
|
||||
--source include/not_windows.inc
|
||||
|
||||
let $start_global_value = `SELECT @@global.max_allowed_packet`;
|
||||
--echo $start_global_value
|
||||
|
@ -38,8 +38,8 @@ SET @ts_old = @@SESSION.timestamp;
|
||||
--echo waiting 1 sec
|
||||
--sleep 1
|
||||
SET @ts_new = @@SESSION.timestamp;
|
||||
SELECT @ts_new - @ts_old AS 'Timestamp Difference';
|
||||
--echo 1 Expected
|
||||
SELECT @ts_new - @ts_old >= 1 AS 'Timestamp Difference';
|
||||
--echo 1 means >=1 expected is true
|
||||
|
||||
|
||||
#
|
||||
@ -51,8 +51,8 @@ SET @ts_old = @@SESSION.timestamp;
|
||||
--echo waiting 4 sec
|
||||
--sleep 4
|
||||
SET @ts_new = @@SESSION.timestamp;
|
||||
SELECT @ts_new - @ts_old AS 'Timestamp Difference';
|
||||
--echo 4 Expected
|
||||
SELECT @ts_new - @ts_old >= 4 AS 'Timestamp Difference';
|
||||
--echo 1 means >=4 expected is true
|
||||
|
||||
--echo '#-----------------------------FN_DYNVARS_179_02---------------------#'
|
||||
#
|
||||
@ -65,7 +65,7 @@ SET @ts_old = @@SESSION.timestamp;
|
||||
SET time_zone = 'MET';
|
||||
SET @ts_new = @@SESSION.timestamp;
|
||||
SELECT @ts_new - @ts_old >= 1 AS 'Timestamp Difference';
|
||||
--echo >=1 Expected
|
||||
--echo 1 means >=1 expected is true
|
||||
|
||||
#
|
||||
# Cleanup
|
||||
|
Reference in New Issue
Block a user