diff options
author | unknown <knielsen@knielsen-hq.org> | 2009-09-29 22:19:43 +0200 |
---|---|---|
committer | unknown <knielsen@knielsen-hq.org> | 2009-09-29 22:19:43 +0200 |
commit | d8aa3dbd343841b61110844e38c1114e14c230ec (patch) | |
tree | eaf77ed4287f2cc3e8c5647ee38a0a145ac0d105 /mysql-test/r | |
parent | a84aa37830261f635925819ea9613046e13177e4 (diff) | |
download | mariadb-git-d8aa3dbd343841b61110844e38c1114e14c230ec.tar.gz |
Fix race in test of times shown in SHOW FULL PROCESSLIST.
(These are by their nature difficult to test reliably due to differences in timing).
Diffstat (limited to 'mysql-test/r')
-rw-r--r-- | mysql-test/r/information_schema.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/information_schema.result b/mysql-test/r/information_schema.result index bf09258efe9..65378b62521 100644 --- a/mysql-test/r/information_schema.result +++ b/mysql-test/r/information_schema.result @@ -1385,7 +1385,7 @@ who other connection here SELECT IF(`time` > 0, 'OK', `time`) AS time_low, IF(`time` < 1000, 'OK', `time`) AS time_high, -IF(time_ms > 900, 'OK', time_ms) AS time_ms_low, +IF(time_ms > 1500, 'OK', time_ms) AS time_ms_low, IF(time_ms < 1000000, 'OK', time_ms) AS time_ms_high FROM INFORMATION_SCHEMA.PROCESSLIST WHERE ID=@tid; |