1. 08 Mar, 2017 9 commits
  2. 06 Mar, 2017 4 commits
  3. 05 Mar, 2017 10 commits
  4. 04 Mar, 2017 5 commits
  5. 03 Mar, 2017 4 commits
  6. 02 Mar, 2017 8 commits
    • Vicențiu Ciorbaru's avatar
      Merge branch '5.5' into 10.0 · 1acfa942
      Vicențiu Ciorbaru authored
      1acfa942
    • Daniel Black's avatar
      MDEV-11610: support-files/mysql-log-rotate.sh not binlog either · d04d835f
      Daniel Black authored
      For the same reason as removing binlog rotation on Debian.
      d04d835f
    • Daniel Black's avatar
      MDEV-11610: Alter Debian log rotate to not rotate binary/relay logs · 156cf86d
      Daniel Black authored
      Rotating binary/relay logs can cause interuption to the processing
      on the server. Binary and relay logs have their own mechanism already
      for not getting out of control (expire_logs_days).
      
      By no longer rotating binary and relay logs log rotation is limited to
      the following logs:
      * error log
      * general log
      * slow query log
      
      Writing these to the binary log would cause any logrotation on the
      slave to occur twice, once due to this and another due to the log-
      rotate script on the slave. Now --local is passed to mysqladmin to
      prevent this duplication.
      156cf86d
    • Daniel Black's avatar
      MDEV-11610: mysqladmin flush-X-log options · 0af8b565
      Daniel Black authored
      Add the following options to mysqladmin
      
      +  flush-binary-log        Flush binary log
      +  flush-engine-log        Flush engine log(s)
      +  flush-error-log         Flush error log
      +  flush-general-log       Flush general log
      +  flush-relay-log         Flush relay log
      +  flush-user-resources    Flush user resources
      0af8b565
    • Olivier Bertrand's avatar
      Update version number and date · b2956b2a
      Olivier Bertrand authored
        modified:   storage/connect/ha_connect.cc
      
      Add conditional SE exception support
        modified:   storage/connect/json.cpp
        modified:   storage/connect/plgdbutl.cpp
      
      Change %p in %x in some sprintf functions.
      This to avoid some compiler warnings.
        modified:   storage/connect/tabwmi.cpp
        modified:   storage/connect/tabxml.cpp
        modified:   storage/connect/value.h
      
      Add JavaWrappers.jar to the class path
        modified:   storage/connect/jdbconn.cpp
      
      Fix wrong declare (char *buf[256]; --> char  buf[256];)
        modified:   storage/connect/xindex.cpp
      b2956b2a
    • Daniel Black's avatar
      MDEV-11610: Add --local to mysqladmin · 33c1f20d
      Daniel Black authored
      33c1f20d
    • Daniel Black's avatar
      MDEV-11386: Advance Toochain library cache workaround (temporary) · 659047b8
      Daniel Black authored
      Due to the way Advance Toolchain before 10.0-3 and 8.0-8 is
      packaged, shared libraries installed after the library cache
      advance-toolchain-atX.Y-runtime package aren't updated in
      /opt/atX.Y/etc/ld.so.cache. This results in mysqld,
      configured with RUNPATH set to /opt/atX.Y/lib64, resulting
      in the Advance Toolchain loader being used and if libraries
      such as jemalloc, libssl or any other library that mysqld uses
      is installed after Advance Toolchain, these libraries aren't in
      the cache and therefore won't be found in the RPM postinstall
      when mysqld is executed by mysql_install_db.
      Signed-off-by: default avatarDaniel Black <daniel.black@au.ibm.com>
      659047b8
    • Sergey Vojtovich's avatar
      MDEV-11221 - main.events_restart failed in bb · 71f53bf7
      Sergey Vojtovich authored
      This is an addition to original fix. Buildbot revealed another sporadic failure
      in perfschema.threads_mysql test. Tests relies on data stored in
      performance_schema.threads, while performing waits on
      information_schema.processlist. These tables are not updated synchronously.
      
      Fixed by performing waits on performance_schema.threads instead.
      71f53bf7