diff options
-rw-r--r-- | Docs/manual.texi | 2 | ||||
-rw-r--r-- | scripts/safe_mysqld.sh | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/Docs/manual.texi b/Docs/manual.texi index 24b6ad6d4a8..29e4cb6758a 100644 --- a/Docs/manual.texi +++ b/Docs/manual.texi @@ -46929,6 +46929,8 @@ not yet 100% confident in this code. @appendixsubsec Changes in release 3.23.53 @itemize @bullet @item +Small fix in mysqld_safe for some shells +@item Fixed that @code{SHOW STATUS} doesn't reset @code{Delayed_insert_threads}. @item Fixed core dump bug when using the @code{BINARY} cast on a @code{NULL} value. diff --git a/scripts/safe_mysqld.sh b/scripts/safe_mysqld.sh index 3494e3d707e..177a809ff36 100644 --- a/scripts/safe_mysqld.sh +++ b/scripts/safe_mysqld.sh @@ -269,8 +269,8 @@ do done fi - echo "`date +'%y%m%d %H:%M:%S mysqld restarted'`" | tee -a $err_log + echo "`date +'%y%m%d %H:%M:%S' mysqld restarted" | tee -a $err_log done -echo "`date +'%y%m%d %H:%M:%S mysqld ended'`" | tee -a $err_log +echo "`date +'%y%m%d %H:%M:%S'` mysqld ended" | tee -a $err_log echo "" | tee -a $err_log |