diff options
author | Alexander Barkov <bar@mnogosearch.org> | 2014-03-07 00:21:25 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mnogosearch.org> | 2014-03-07 00:21:25 +0400 |
commit | 89e171535563dcdf1eeb309e54abc4da2f5dd539 (patch) | |
tree | 79331d73d127f4226b274e86f476ba1f86c721e9 /sql/nt_servc.cc | |
parent | b95c8ce530cbbd92b232324dc2c4376615bd1b5d (diff) | |
download | mariadb-git-89e171535563dcdf1eeb309e54abc4da2f5dd539.tar.gz |
MDEV-5372 Make "CAST(time_expr AS DATETIME)" compatible with MySQL-5.6 (and the SQL Standard)
Diffstat (limited to 'sql/nt_servc.cc')
-rw-r--r-- | sql/nt_servc.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/nt_servc.cc b/sql/nt_servc.cc index d6a8eac7ed5..c81bcef0316 100644 --- a/sql/nt_servc.cc +++ b/sql/nt_servc.cc @@ -33,7 +33,7 @@ NTService::NTService() //time-out variables nStartTimeOut = 15000; - nStopTimeOut = 86400000; + nStopTimeOut = SECONDS_IN_24H * 1000; nPauseTimeOut = 5000; nResumeTimeOut = 5000; |