diff options
author | Sergei Golubchik <sergii@pisem.net> | 2013-07-01 12:02:44 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2013-07-01 12:02:44 +0200 |
commit | 03c71ff2ba1c5949ff715e64008cfdb291c6b14a (patch) | |
tree | d054ac75428159fb5374c8f6b06ca70723bc4925 /mysql-test/r/processlist.result | |
parent | a924e9004ceff8838d17476136ddccb3ef4a8e51 (diff) | |
download | mariadb-git-03c71ff2ba1c5949ff715e64008cfdb291c6b14a.tar.gz |
MDEV-4683 query start_time not reset when going to sleep
Diffstat (limited to 'mysql-test/r/processlist.result')
-rw-r--r-- | mysql-test/r/processlist.result | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/r/processlist.result b/mysql-test/r/processlist.result index c8fb4ed6bd5..fc03f920533 100644 --- a/mysql-test/r/processlist.result +++ b/mysql-test/r/processlist.result @@ -7,3 +7,9 @@ SELECT INFO,TIME,TIME_MS FROM INFORMATION_SCHEMA.PROCESSLIST WHERE INFO IS NULL; SET DEBUG_SYNC = 'now SIGNAL fill_schema_proceed'; INFO TIME TIME_MS NULL 0 0.000 +select sleep(5); +sleep(5) +0 +select command, time < 5 from information_schema.processlist where id != connection_id(); +command time < 5 +Sleep 1 |