1. 20 Dec, 2023 2 commits
  2. 19 Dec, 2023 6 commits
  3. 18 Dec, 2023 2 commits
  4. 15 Dec, 2023 4 commits
  5. 14 Dec, 2023 2 commits
  6. 13 Dec, 2023 5 commits
    • Marko Mäkelä's avatar
      MDEV-21245 InnoDB: Using a partial-field key prefix in search · 852e1383
      Marko Mäkelä authored
      ha_innobase::compare_key_parts(): If a full column index is
      being replaced with a column prefix index, return Compare_keys::NotEqual.
      852e1383
    • Daniel Black's avatar
      MDEV-33006 Missing required privilege CONNECTION ADMIN · 2c60d43d
      Daniel Black authored
      opt_kill_long_query_type being an enum could be 0 corresponding
      to ALL. When ALL is specified, the CONNECTION ADMIN is still
      required.
      
      Also check REPLICA MONITOR privilege and make the tests
      find the results by recording stderr.
      
      Noticed thanks to bug report by Tim van Dijen.
      
      Fixes: 79b58f1c
      2c60d43d
    • Rex's avatar
      MDEV-31279 Crash when lateral derived is guaranteed to return no rows · b4712242
      Rex authored
      Consider this query
      SELECT t1.* FROM t1, (SELECT t2.b FROM t2 WHERE NOT EXISTS
      (SELECT 1 FROM t3) GROUP BY b) sq where sq.b = t1.a;
      
      If SELECT 1 FROM t3 is expensive, for example t3 has >
      thd->variables.expensive_subquery_limit, first evaluation is deferred to
      mysql_derived_fill().  There it is noted that, in the above case
       NOT EXISTS (SELECT 1 FROM t3) is constant and false.
      
      This causes the join variable zero_result_cause to be set to
      "Impossible WHERE noticed after reading const tables" and the handler
      for this join is never "opened" via handler::ha_open.
      
      When mysql_derived_fill() is called for the next group of results, this
      unopened handler is not taken into account.
      
      reviewed by Igor Babaev (igor@mariadb.com)
      b4712242
    • Marko Mäkelä's avatar
      MDEV-18322 Assertion "wrong page type" on instant ALTER TABLE · c17aca2f
      Marko Mäkelä authored
      row_ins_clust_index_entry_low(): Invoke btr_set_instant() in the same
      mini-transaction that has successfully inserted the metadata record.
      In this way, if inserting the metadata record fails before any
      undo log record was written for it, the index root page will remain
      consistent.
      
      innobase_instant_try(): Remove the btr_set_instant() call.
      
      Reviewed by: Thirunarayanan Balathandayuthapani
      Tested by: Matthias Leich
      c17aca2f
    • Daniel Black's avatar
      MDEV-32795: ALTER SEQUENCE IF NOT EXISTS non_existing_seq Errors rather than note · fbe604d8
      Daniel Black authored
      Like all IF NOT EXISTS syntax, a Note should be generated.
      
      The original commit of Seqeuences cleared the IF NOT EXISTS part
      in the sql/sql_yacc.yy with lex->create_info.init(). Without this
      bit set there was no way it could do anything other than error.
      
      To remedy this removal, the sql_yacc.yy components have been
      minimised as they where all set at the beginning of the ALTER.
      This way the opt_if_not_exists correctly set the IF_EXISTS flag.
      
      In MDEV-13005 (bb4dd70e) the error code changed, requiring
      ER_UNKNOWN_SEQUENCES to be handled in the function
      No_such_table_error_handler::handle_condition.
      fbe604d8
  7. 12 Dec, 2023 11 commits
  8. 11 Dec, 2023 8 commits
    • Brandon Nesterenko's avatar
      MDEV-10653: SHOW SLAVE STATUS Can Deadlock an Errored Slave · 8dad5148
      Brandon Nesterenko authored
      AKA rpl.rpl_parallel, binlog_encryption.rpl_parallel fails in
      buildbot with timeout in include
      
      A replication parallel worker thread can deadlock with another
      connection running SHOW SLAVE STATUS. That is, if the replication
      worker thread is in do_gco_wait() and is killed, it will already
      hold the LOCK_parallel_entry, and during error reporting, try to
      grab the err_lock. SHOW SLAVE STATUS, however, grabs these locks in
      reverse order. It will initially grab the err_lock, and then try to
      grab LOCK_parallel_entry. This leads to a deadlock when both threads
      have grabbed their first lock without the second.
      
      This patch implements the MDEV-31894 proposed fix to optimize the
      workers_idle() check to compare the last in-use relay log’s
      queued_count==dequeued_count for idleness. This removes the need for
      workers_idle() to grab LOCK_parallel_entry, as these values are
      atomically updated.
      
      Huge thanks to Kristian Nielsen for diagnosing the problem!
      
      Reviewed By:
      ============
      Kristian Nielsen <knielsen@knielsen-hq.org>
      Andrei Elkin <andrei.elkin@mariadb.com>
      8dad5148
    • Kristian Nielsen's avatar
      MDEV-26632: multi source replication filters breaking GTID semantic · 5ca63b2b
      Kristian Nielsen authored
      Add a test case that demonstrates a working setup as described in MDEV-26632.
      This requires --gtid-ignore-duplicates=1 and --gtid-strict-mode=0.
      
      In A->B->C, B filters some (but not all) events from A. C is promoted to
      create A->C->B, and the current GTID position in B contains a GTID from A that
      is not present in C (due to filtering). Demonstrate that B can still connect
      with GTID to C, starting at the "hole" in the binlog stream on C originating
      from A.
      Signed-off-by: default avatarKristian Nielsen <knielsen@knielsen-hq.org>
      5ca63b2b
    • Kristian Nielsen's avatar
      MDEV-13792: innodb.purge_thread_shutdown failed in buildbot with wrong result (sporadic) · 50ce001a
      Kristian Nielsen authored
      Omit `state` when selecting processlist to verify which threads are running.
      The state changes as threads are running (enter_state()), and this causes
      sporadic test failures.
      Signed-off-by: default avatarKristian Nielsen <knielsen@knielsen-hq.org>
      50ce001a
    • Kristian Nielsen's avatar
      MDEV-29816 rpl.rpl_parallel_29322 occasionally fails in BB · da9ffca9
      Kristian Nielsen authored
      Make sure the old binlog dump thread is not still running when manipulating
      binlog files; otherwise there is a small chance it will see an invalid
      partial file and report an I/O error.
      Signed-off-by: default avatarKristian Nielsen <knielsen@knielsen-hq.org>
      da9ffca9
    • Marko Mäkelä's avatar
      MDEV-16264 fixup: Remove a useless test · 1e80601b
      Marko Mäkelä authored
      Let us remove a test that frequently fails with a result difference.
      This test had been added in fc279d7e
      to cover a bug in thd_destructor_proxy(), which was replaced with
      simpler logic in 5e62b6a5 (MDEV-16264).
      1e80601b
    • Marko Mäkelä's avatar
      MDEV-11905: Simplify encryption.innodb_encrypt_discard_import · 7e34bb5c
      Marko Mäkelä authored
      The test was populating unnecessarily large tables and
      restarting the server several times for no real reason.
      
      Let us hope that a smaller version of the test will produce more
      stable results. Occasionally, some unencrypted contents in the table t2
      was revealed in the old test.
      7e34bb5c
    • Alexander Barkov's avatar
      MDEV-17226 Column Data in Truncated on UNION to the length of the first value if using REPLACE · 03ee23bc
      Alexander Barkov authored
      This problem was earlier fixed by:
        commit 55b27888
      
      Adding MTR tests only.
      03ee23bc
    • Dmitry Shulga's avatar
      MDEV-32965: Assertion `thd->active_stmt_arena_to_use()->... · 9bf50a0e
      Dmitry Shulga authored
      MDEV-32965:  Assertion `thd->active_stmt_arena_to_use()-> is_stmt_prepare_or_first_sp_execute() || thd->active_stmt_arena_to_use()-> is_conventional() || thd->active_stmt_arena_to_use()->state == Query_arena::STMT_SP_QUERY_ARGUMENTS' failed
      
      This patch fixes too strong condition in assert at the method
        Item_func_group_concat::fix_fields
      that is true in case of a stored routine and obviously broken
      for a prepared statement.
      9bf50a0e