1. 04 Apr, 2024 24 commits
  2. 12 Mar, 2024 1 commit
  3. 08 Mar, 2024 2 commits
  4. 26 Feb, 2024 1 commit
  5. 22 Feb, 2024 2 commits
  6. 20 Feb, 2024 1 commit
  7. 19 Feb, 2024 2 commits
  8. 17 Feb, 2024 1 commit
  9. 15 Feb, 2024 1 commit
  10. 14 Feb, 2024 5 commits
    • Sergei Golubchik's avatar
      update 32bit rdiffs · 3ae6680e
      Sergei Golubchik authored
      3ae6680e
    • Yuchen Pei's avatar
      MDEV-33441 Do not deinit plugin variables when retry requested · 068a6819
      Yuchen Pei authored
      After MDEV-31400, plugins are allowed to ask for retries when failing
      initialisation. However, such failures also cause plugin system
      variables to be deleted (plugin_variables_deinit()) before retrying
      and are not re-added during retry.
      
      We fix this by checking that if the plugin has requested a retry the
      variables are not deleted. Because plugin_deinitialize() also calls
      plugin_variables_deinit(), if the retry fails, the variables will
      still be deleted.
      
      Alternatives considered:
      
      - remove the plugin_variables_deinit() from plugin_initialize() error
      handling altogether. We decide to take a more conservative approach
      here.
      
      - re-add the system variables during retry. It is more complicated
      than simply iterating over plugin->system_vars and call
      my_hash_insert(). For example we will need to assign values to
      the test_load field and extract more code from test_plugin_options(),
      if that is possible.
      068a6819
    • Sergei Golubchik's avatar
      MDEV-31857 fix galera.MW-284 · fe07ac31
      Sergei Golubchik authored
      followup for abcd23ad
      fe07ac31
    • Sergei Golubchik's avatar
      MDEV-31857 fix galera.galera_var_notify_ssl_ipv6 · 8dee23cd
      Sergei Golubchik authored
      it was able to enable --ssl-verify-server-cert if explicily requested,
      now it can also disable it, if explicitly requested.
      8dee23cd
    • Monty's avatar
      Improve error message in mysqltest when sync_with_master fails · d6794aa4
      Monty authored
      In case of failure, the something like the following is now printed:
      
      Slave position:  file: binary.000004  position: 3647
      Master position: file: binary.000004  position: 3647
      d6794aa4