1. 18 Aug, 2016 1 commit
  2. 17 Aug, 2016 1 commit
  3. 16 Aug, 2016 1 commit
  4. 02 Aug, 2016 1 commit
  5. 01 Aug, 2016 3 commits
  6. 28 Jul, 2016 1 commit
  7. 27 Jul, 2016 2 commits
    • Nirbhay Choubey's avatar
      MDEV-10396: MariaDB does not restart after upgrade on debian 8 · b522c71e
      Nirbhay Choubey authored
      During wsrep position recovery, galera_recovery.sh script
      redirected mysqld's error log to a temporary file in order
      to find the start position. This, however, will not work
      if --log-error is configured for the server.
      
      Fixed by using --log-error in command line instead of
      redirection.
      
      [Patch contributed by Philippe MARASSE]
      b522c71e
    • Sergei Petrunia's avatar
      MDEV-10389: Query returns different results on a debug vs non-debug build · a63ceaea
      Sergei Petrunia authored
      The problem was caused by a merged semi-join, which contained a non-merged
      semi-join, which used references to the top-level query in the left_expr.
      
      When moving non-merged semi-join from the subquery to its parent, do not
      forget to call fix_after_pullout for its Item_subselect. We need to do
      that specifically, because non-merged semi-joins do not have their
      IN-equality in the WHERE clause at this stage.
      a63ceaea
  8. 24 Jul, 2016 1 commit
  9. 22 Jul, 2016 1 commit
  10. 21 Jul, 2016 1 commit
  11. 19 Jul, 2016 1 commit
  12. 18 Jul, 2016 1 commit
  13. 14 Jul, 2016 1 commit
  14. 13 Jul, 2016 6 commits
  15. 12 Jul, 2016 15 commits
  16. 11 Jul, 2016 2 commits
  17. 08 Jul, 2016 1 commit
    • Sergey Vojtovich's avatar
      MDEV-9363 - Mroonga tests with datetime field fail on Solaris in buildbot · ae511cbe
      Sergey Vojtovich authored
      On Solaris mktime() adds one extra day to tm_mday field and returns appropriate
      value for dates 1600-01-01 and earlier. That is 1600-01-01 becomes 1600-01-02.
      
      Solaris mktime manual excerpts:
        ...
        The tm_year member must be for year 1901 or later.  Calendar
        times  before  20:45:52  UTC,  December  13,  1901  or after
        03:14:07 UTC,  January 19, 2038 cannot be represented. Port-
        able  applications  should  not  try  to create dates before
        00:00:00 UTC, January 1, 1970 or after 00:00:00 UTC, January
        1, 2038.
        ...
        The  mktime() function assumes Gregorian dates. Times before
        the  adoption  of the Gregorian calendar will not match his-
        torial records.
        ...
      
      According to manual Mroonga only supports dates and datetimes after 1900:
      https://mariadb.com/kb/en/mariadb/about-mroonga/
      
      Technically these tests cover unsupported values and should fail on all
      platforms. Disable tests until the problem is fixed upstream.
      ae511cbe