1. 11 Jun, 2016 3 commits
  2. 10 Jun, 2016 3 commits
  3. 08 Jun, 2016 2 commits
  4. 28 May, 2016 1 commit
  5. 27 May, 2016 2 commits
  6. 24 May, 2016 1 commit
  7. 30 Apr, 2016 1 commit
  8. 28 Apr, 2016 2 commits
    • Vladislav Vaintroub's avatar
      9eba34f0
    • Sergey Vojtovich's avatar
      MDEV-9988 - Insert cast to suppress -Wdynamic-class-memaccess · 94bad73d
      Sergey Vojtovich authored
      Clang warns on this code because it is memsetting over a vtable contained in a
      struct in the best_positions array. The diagnostic text is:
      
      mariadb/sql/sql_select.cc:24462:10: error: destination for this 'memset' call is
      a pointer to class containing a dynamic class 'Duplicate_weedout_picker'; vtable
      pointer will be overwritten [-Werror,-Wdynamic-class-memaccess]
        memset(best_positions, 0, sizeof(POSITION) * (table_count + 1));
        ~~~~~~ ^
      
      Patch contributed by David Gow.
      94bad73d
  9. 27 Apr, 2016 2 commits
  10. 26 Apr, 2016 15 commits
  11. 25 Apr, 2016 4 commits
  12. 24 Apr, 2016 4 commits
    • Olivier Bertrand's avatar
      - Fix an error causing MYSQL table to fail saying "no result set" · 26adbb2d
      Olivier Bertrand authored
        when joining a table to a MYSQL indexed table.
        modified:   storage/connect/myconn.cpp
        modified:   storage/connect/myconn.h
        modified:   storage/connect/tabmysql.cpp
      
      - Add more tests to the mysql_index.test file
        modified:   storage/connect/mysql-test/connect/r/mysql_index.result
        modified:   storage/connect/mysql-test/connect/t/mysql_index.test
      
      - Fix and error causing remote indexing to fail when for not unique index.
        Was experienced with MYSQL, ODBC and JDBC tables.
        modified:   storage/connect/connect.cc
      
      - Fix MDEV-9966 (zero lines returned)
        modified:   storage/connect/ha_connect.cc
        modified:   storage/federatedx/ha_federatedx.cc
      26adbb2d
    • Sergey Vojtovich's avatar
      MDEV-9975 - main.partition_innodb_plugin fails sporadically · 2b7573ec
      Sergey Vojtovich authored
      Fixed wait condition to wait for InnoDB to actually acquire row locks instead
      of waiting for thread to enter "Searching rows for update" state (which happens
      earlier).
      
      Also use default wait timeout, 2 seconds can be too few for threads to enter
      appropriate state.
      2b7573ec
    • Sergei Golubchik's avatar
      MDEV-9617 solaris sparc build fails on 10.0 · ce38addd
      Sergei Golubchik authored
      Spider:
        SunPro only supports array declarations with
        constant size. Spider already has a workaround for
        that, inside #ifdef _MSC_VER. Enable this code
        also for __SUNPRO_CC
      
      Connect:
        Don't use anonymous union.
        Cast for mmap.
        Don't pass gcc-ish -W... options to SunPro
      ce38addd
    • Sergei Golubchik's avatar
      tests -DDEFAULT_CHARSET=utf8 -DDEFAULT_COLLATION=utf8_general_ci · 7b58fd5e
      Sergei Golubchik authored
      This fixes:
      MDEV-7693 MariaDB - mysql-test - SUITE:funcs_1 - funcs_1.is_tables_mysql is failing on TABLE_COLLATION /DATABASE_COLLATION
      MDEV-8487 mysql-test - main.information_schema 'xtradb' fails
      MDEV-8486 mysql-test - main.bootstrap fails
      7b58fd5e