1. 13 Feb, 2019 2 commits
  2. 12 Feb, 2019 2 commits
    • Marko Mäkelä's avatar
      Merge 10.1 into 10.2 · 8a9cdc5f
      Marko Mäkelä authored
      8a9cdc5f
    • Julius Goryavsky's avatar
      MDEV-18426: Most of the mtr tests in the galera_3nodes suite fail · 5b827511
      Julius Goryavsky authored
      Most of the mtr tests in the galera_3nodes suite fail
      for a variety of reasons with a variety of errors.
      
      This patch fixes several substantial flaws
      in the galera_3nodes suite tests and in the mtr framework
      service files, adapting the tests from galera_3nodes
      for the current version of MariaDB.
      
      This patch also synchronizes some galera_3nodes-related
      files with the latest changes made for MDEV-17835 (v2 patch)
      and for MDEV-18379 in other branches (10.2 and 10.3).
      
      Closes #1161
      5b827511
  3. 11 Feb, 2019 3 commits
  4. 09 Feb, 2019 2 commits
  5. 08 Feb, 2019 2 commits
  6. 07 Feb, 2019 5 commits
  7. 06 Feb, 2019 4 commits
  8. 05 Feb, 2019 11 commits
  9. 04 Feb, 2019 3 commits
  10. 03 Feb, 2019 3 commits
    • Marko Mäkelä's avatar
      Merge 10.1 into 10.2 · a249e57b
      Marko Mäkelä authored
      Temporarily disable a test for
      commit 2175bfce
      because fixing it in 10.2 requires updating libmariadb.
      a249e57b
    • Marko Mäkelä's avatar
      MDEV-16896 encryption.innodb-checksum-algorithm crashes · 955c7b32
      Marko Mäkelä authored
      buf_page_is_corrupted(): Read the global variable srv_checksum_algorithm
      only once in order to avoid a race condition when
      SET GLOBAL innodb_checksum_algorithm=...;
      is being executed concurrently with this function.
      955c7b32
    • Olivier Bertrand's avatar
      - Fix MDEV-13136: enhance CREATE SERVER MyServerName · a0e26599
      Olivier Bertrand authored
        FOREIGN DATA WRAPPER to work with CONNECT engine
        modified:   storage/connect/tabjdbc.cpp
      
      - Add a function to retrieve User variable value (DEVELOPMENT only)
        modified:   storage/connect/ha_connect.cc
        modified:   storage/connect/jsonudf.cpp
        modified:   storage/connect/jsonudf.h
        modified:   storage/connect/tabjdbc.cpp
      a0e26599
  11. 02 Feb, 2019 3 commits
    • Vladislav Vaintroub's avatar
      MDEV-18281 COM_RESET_CONNECTION changes the connection encoding · 261ce528
      Vladislav Vaintroub authored
      Store original charset during client authentication, and restore it for
      COM_RESET_CONNECTION
      261ce528
    • Marko Mäkelä's avatar
      Merge 10.1 into 10.1 · 213ece2f
      Marko Mäkelä authored
      This is joint work with Oleksandr Byelkin.
      213ece2f
    • Marko Mäkelä's avatar
      Fix embedded innodb_plugin after 560799eb · c1e1764f
      Marko Mäkelä authored
      wsrep_certification_rules: Define as a weak global symbol.
      While there are separate _embedded.a for statically
      linked storage engine plugins, there is only one ha_innodb.so
      which is supposed to work with both values of WITH_WSREP.
      
      The merge from 10.0-galera introduced a reference to a global
      variable that is only defined when the server is built WITH_WSREP.
      We must define that symbol as weak global, so that when
      a dynamically linked InnoDB or XtraDB is used with the embedded
      server (which never includes write-set replication patches),
      the variable will be read as 0, instead of causing a failure to
      load the InnoDB or XtraDB plugin.
      c1e1764f