1. 01 Aug, 2021 1 commit
    • Sergei Golubchik's avatar
      suppress galera error "Failed to report last committed" · ec8882b9
      Sergei Golubchik authored
      according to MDEV-17550 it's informational, not fatal.
      "last committed" is part of the certification index purge process.
      
      depending on what tests and in what order are run it can be triggered
      at unspecified times during the testing. If the test is happen to
      shut down the server at this very time, the log will have:
      
      [Warning] WSREP: Failed to report last committed XXXYYYZZZ, -77 (File descriptor in bad state)
      ec8882b9
  2. 31 Jul, 2021 2 commits
  3. 29 Jul, 2021 2 commits
  4. 28 Jul, 2021 11 commits
  5. 27 Jul, 2021 16 commits
  6. 26 Jul, 2021 7 commits
  7. 25 Jul, 2021 1 commit
    • Nayuta Yanagisawa's avatar
      MDEV-24517 follow-up: Fix for test with --ps-protocol · f52d3936
      Nayuta Yanagisawa authored
      Tests for the Spider storage engine often use the following idiom:
      
      --let $command=CREATE TABLE t1 (...);CREATE TABLE t2 (...); ...
      --eval $command
      
      However, the idiom seems to work in the normal protocol, but fails
      in the prepared statement (ps) protocol.
      As testing CREATE TABLE statements in the ps protocol, we wrap the
      idiom by --disable_ps_protocol and --enable_ps_protocol.
      f52d3936