1. 15 Apr, 2024 2 commits
    • Marko Mäkelä's avatar
      MDEV-33559 matched_rec::block should be allocated from the buffer pool · a032f14b
      Marko Mäkelä authored
      matched_rec::rec_buf[], matched_rec::bufp: Remove.
      
      matched_rec::block: Make this a pointer to something that
      is allocated by buf_block_alloc(). In this way, the only
      case where buf_block_t is constructed outside buf_pool
      is ALTER TABLE...IMPORT TABLESPACE.
      
      rtr_info::heap: Remove. This was only used for allocating matched_rec,
      which now is smaller.
      
      mtr_t::memmove(): Simplify some code to avoid GCC 9.4.0 -Wconversion
      in the 10.6 branch as a result of these changes.
      
      Reviewed by: Debarun Banerjee
      a032f14b
    • Daniel Black's avatar
      MDEV-30676 rpl.parallel_backup* tests sometimes fail · ea810b04
      Daniel Black authored
      Raise innodb_lock_wait_timeout from 1 to 5
      ea810b04
  2. 13 Apr, 2024 6 commits
    • Sergei Golubchik's avatar
      feedback plugin: abort sending the report on server shutdown · 8bc32410
      Sergei Golubchik authored
      network timeouts might be rather large and feedback plugin
      waits forever for the sender thread to exit.
      
      an alternative could've been to use GNU-specific pthread_timedjoin_np(),
      where _np mean "not portable".
      8bc32410
    • Sergei Golubchik's avatar
      Fixed random failure in main.kill_processlist-6619 (take 3) · 6a4ac4c7
      Sergei Golubchik authored
      followup for 81f75ca8
      
      improve over take 2. It's technically possible, though unlikely,
      to see THD after it already reset the info to NULL, but has not
      changed the command to COM_SLEEP yet (see THD::mark_connection_idle()).
      
      Let's wait for "Sleep", not for NULL.
      6a4ac4c7
    • Sergei Golubchik's avatar
      galera/suite.pm: perl warning · 69b5fdf3
      Sergei Golubchik authored
      Unescaped left brace in regex is passed through in regex
      69b5fdf3
    • Tony Chen's avatar
      Minor improvements to options error handling · 79706fd3
      Tony Chen authored
      - Add additional MTRs for more coverage on invalid options
      - Updating a few error messages to be more informative
      - Use the exit code from handle_options() when there is an error processing
        user options
      
      All new code of the whole pull request, including one or several files that are
      either new files or modified ones, are contributed under the BSD-new license. I
      am contributing on behalf of my employer Amazon Web Services, Inc.
      79706fd3
    • Tony Chen's avatar
      MDEV-33469 Fix behavior on invalid arguments · 47d75cdd
      Tony Chen authored
      When passing in an invalid value (e.g. incorrect data type) for a variable, the
      server startup will fail with misleading error messages.
      
      The behavior **before** this change:
      
      For server options:
      - The error message will indicate that the argument is being adjusted to a valid value
      - Server startup still fails
      
      For plugin options:
      - The error message will indicate that the argument is being adjusted to a valid value
      - The plugin is still disabled
      - Server startup fails with a message that it does not recognize the plugin option
      
      The behavior **after** this change:
      
      For server options:
      - Output that an invalid argument was provided
      - Exit server startup
      
      For plugin options:
      - Output that an invalid argument was provided
      - Disable the plugin
      - Attempt to continue server startup
      
      All new code of the whole pull request, including one or several files that are
      either new files or modified ones, are contributed under the BSD-new license. I
      am contributing on behalf of my employer Amazon Web Services, Inc.
      47d75cdd
    • Tony Chen's avatar
      Simplify MTR for handling multiple invalid options · dd639985
      Tony Chen authored
      In 69a4d6ae, an MTR test was added to verify that we handled multiple invalid
      options.  However, the logic to perform this test relied on a non-trivial regex
      to filter out the noise in the logs.
      
      Instead, we now just simply search for what we expect to be in the logs.
      
      All new code of the whole pull request, including one or several files that are
      either new files or modified ones, are contributed under the BSD-new license. I
      am contributing on behalf of my employer Amazon Web Services, Inc.
      dd639985
  3. 11 Apr, 2024 4 commits
    • Brandon Nesterenko's avatar
      MDEV-10684: rpl.rpl_domain_id_filter_restart fails in buildbot · a6aecbb0
      Brandon Nesterenko authored
      The test failure in rpl.rpl_domain_id_filter_restart is caused by
      MDEV-33887. That is, the test uses master_pos_wait() (called
      indirectly by sync_slave_with_master) to try and wait for the
      replica to catch up to the master. However, the waited on
      transaction is ignored by the configured
        CHANGE MASTER TO IGNORE_DOMAIN_IDS=()
      As MDEV-33887 reports, due to the IO thread updating the binlog
      coordinates and the SQL thread updating the GTID state, if the
      replica is stopped in-between these updates, the replica state will
      be inconsistent. That is, the test expects that the GTID state will
      be updated, so upon restart, the replica will be up-to-date.
      However, if the replica is stopped before the SQL thread updates its
      GTID state, then upon restart, the replica will fetch the previously
      ignored event, which is no longer ignored upon restart, and execute
      it. This leads to the sporadic extra row in t2.
      
      This patch changes master_pos_wait() to use master_gtid_wait() to
      ensure the replica state is consistent with the master state.
      a6aecbb0
    • Marko Mäkelä's avatar
      Fix g++-14 -Wtemplate-id-cdtor · 04be12a8
      Marko Mäkelä authored
      04be12a8
    • anson1014's avatar
      Link beginner instructions in README.md · f131c609
      anson1014 authored
      When navigating through the existing links in the README, it is not
      immediately obvious where to go to find instructions in building
      and testing the source code. Since the README is often the first
      thing people see when looking at a repository, this information
      should be front and centre so that newcomers to the project can
      get setup as quickly as possible.
      f131c609
    • Ian Gilfillan's avatar
      Update README.md · 8785b797
      Ian Gilfillan authored
      8785b797
  4. 10 Apr, 2024 6 commits
    • Alexander Barkov's avatar
      MDEV-32458 ASAN unknown-crash in Inet6::ascii_to_fbt when casting character string to inet6 · 37fd497c
      Alexander Barkov authored
      The condition checked the value of the leftmost byte before checking if
      at least one byte is still available in the buffer.
      Changing the order in the condition: check for a byte availability before
      checking the byte value.
      37fd497c
    • Sergei Golubchik's avatar
      sporadic failures of rpl.rpl_semi_sync_master_shutdown · 2d2172a5
      Sergei Golubchik authored
      increase the MASTER_CONNECT_RETRY time under valgrind,
      otherwise the slave gives up retrying before the master is ready
      
      also, cosmetic cleanup of rpl_semi_sync_master_shutdown.test
      2d2172a5
    • Andrei's avatar
      MDEV-31779 Server crash in Rows_log_event::update_sequence upon replaying binary log · 0da1653f
      Andrei authored
      The crash at running mysqlbinlog on a SEQUENCE containing binlog file
      was caused MDEV-29621 fixes that did not check which of the slave
      or binlog applier executes a block introduced there.
      
      The block is meaningful only for the parallel slave applier, so
      it's safe to fix this bug with identified the actual applier and
      skipping the block when it's the mysqlbinlog one.
      0da1653f
    • Alexander Barkov's avatar
      MDEV-29149 Assertion `!is_valid_datetime() ||... · b697dce8
      Alexander Barkov authored
      MDEV-29149 Assertion `!is_valid_datetime() || fraction_remainder(((item->decimals) < (6) ? (item->decimals) : (6))) == 0' failed in Datetime_truncation_not_needed::Datetime_truncation_not_needed
      
      TIME-alike string and numeric arguments to TIMEDIFF()
      can get additional fractional seconds during the supported
      TIME range adjustment in get_time().
      
      For example, during TIMEDIFF('839:00:00','00:00:00') evaluation
      in Item_func_timediff::get_date(), the call for args[0]->get_time()
      returns MYSQL_TIME '838:59:59.999999'.
      
      Item_func_timediff::get_date() did not handle these extra digits
      and returned a MYSQL_TIME result with fractional digits outside
      of Item_func_timediff::decimals. This mismatch could further be
      caught by a DBUG_ASSERT() in various other pieces of the code,
      leading to a crash.
      
      Fix:
      
      In case if get_time() returned MYSQL_TIMESTAMP_TIME,
      let's truncate all extra digits using my_time_trunc(&l_time,decimals).
      This guarantees that the rest of the code returns a MYSQL_TIME
      with second_part not conflicting with Item_func_timediff::decimals.
      b697dce8
    • Jan Lindström's avatar
      MDEV-25089 : Assertion `error.len > 0' failed in galera::ReplicatorSMM::handle_apply_error() · 0304dbc3
      Jan Lindström authored
      Additional corrections after merge from 10.4 branch
      Signed-off-by: default avatarJulius Goryavsky <julius.goryavsky@mariadb.com>
      0304dbc3
    • Alexander Barkov's avatar
      MDEV-28366 GLOBAL debug_dbug setting affected by collation_connection=utf16... · 9fb8881e
      Alexander Barkov authored
      When the system variables @@debug_dbug was assigned to
      some expression, Sys_debug_dbug::do_check() did not properly
      convert the value from the expression character set to utf8.
      So the value was erroneously re-interpretted as utf8 without
      conversion. In case of a tricky expression character set
      (e.g. utf16le), this led to unexpected results.
      
      Fix:
      
      Re-using Sys_var_charptr::do_string_check() in Sys_debug_dbug::do_check().
      9fb8881e
  5. 09 Apr, 2024 7 commits
    • Brandon Nesterenko's avatar
      MDEV-30260: Slave crashed:reload_acl_and_cache during shutdown · 952ab9a5
      Brandon Nesterenko authored
      The signal handler thread can use various different runtime
      resources when processing a SIGHUP (e.g. master-info information)
      due to calling into reload_acl_and_cache(). Currently, the shutdown
      process waits for the termination of the signal thread after
      performing cleanup. However, this could cause resources actively
      used by the signal handler to be freed while reload_acl_and_cache()
      is processing.
      
      The specific resource that caused MDEV-30260 is a race condition for
      the hostname_cache, such that mysqld would delete it in
      clean_up()::hostname_cache_free(), before the signal handler would
      use it in reload_acl_and_cache()::hostname_cache_refresh().
      
      Another similar resource is the active_mi/master_info_index. There
      was a race between its deletion by the main thread in end_slave(),
      and their usage by the Signal Handler as a part of
      Master_info_index::flush_all_relay_logs.read(active_mi) in
      reload_acl_and_cache().
      
      This patch fixes these race conditions by relocating where server
      shutdown waits for the signal handler to die until after
      server-level threads have been killed (i.e., as a last step of
      close_connections()). With respect to the hostname_cache, active_mi
      and master_info_cache, this ensures that they cannot be destroyed
      while the signal handler is still active, and potentially using
      them.
      
      Additionally:
      
       1) This requires that Events memory is still in place for SIGHUP
      handling's mysql_print_status(). So event deinitialization is moved
      into clean_up(), but the event scheduler still needs to be stopped
      in close_connections() at the same spot.
      
       2) The function kill_server_thread is no longer used, so it is
      deleted
      
       3) The timeout to wait for the death of the signal thread was not
      consistent with the comment. The comment mentioned up to 10 seconds,
      whereas it was actually 0.01s. The code has been fixed to wait up to
      10 seconds.
      
       4) A warning has been added if the signal handler thread fails to
      exit in time.
      
       5) Added pthread_join() to end of wait_for_signal_thread_to_end()
      if it hadn't ended in 10s with a warning. Note this also removes
      the pthread_detached attribute from the signal_thread to allow
      for the pthread_join().
      
      Reviewed By:
      ===========
      Vladislav Vaintroub <wlad@mariadb.com>
      Andrei Elkin <andrei.elkin@mariadb.com>
      952ab9a5
    • Sergei Golubchik's avatar
      MDEV-33867 main.query_cache_debug fails with heap-use-after-free · 4980fcb9
      Sergei Golubchik authored
      What's happening:
      1. Query_cache::insert() locks the QC and verifies that it's enabled
      2. parallel thread tries to disable it. trylock fails (QC is locked)
         so the status becomes DISABLE_REQUEST
      3. Query_cache::insert() calls Query_cache::write_result_data()
         which allocates a new block and unlocks the QC.
      4. Query_cache::unlock() notices there are no more QC users and a
         pending DISABLE_REQUEST so it disables the QC and frees all the
         memory, including the new block that was just allocated
      5. Query_cache::write_result_data() proceeds to write into the freed block
      
      Fix: change m_cache_status under a mutex.
      
      Approved by Oleksandr Byelkin <sanja@mariadb.com>
      4980fcb9
    • Alexander Barkov's avatar
      MDEV-18898 SELECT using wrong index when using operator IN with mixed types · d4936c8b
      Alexander Barkov authored
      These patches:
      
        # commit 74891ed2
        #
        #  MDEV-11514, MDEV-11497, MDEV-11554, MDEV-11555 - IN and CASE type aggregation problems
      
        # commit 53499cd1
        #
        # MDEV-31303 Key not used when IN clause has both signed and usigned values
      
      earlier fixed MDEV-18898.
      
      Adding only an MTR case.
      
      	modified:   mysql-test/main/func_in.result
      	modified:   mysql-test/main/func_in.test
      d4936c8b
    • Jan Lindström's avatar
      MDEV-33828 : Transactional commit not supported by involved engine(s) · 7aa86eb1
      Jan Lindström authored
      Problem was too tight condition on ha_commit_trans to not
      allow non transactional storage engines participate 2pc
      in Galera case. This is required because transaction
      using e.g. procedures might read mysql.proc table inside
      a trasaction and these tables use at the moment Aria
      storage engine that does not support 2pc.
      
      Fixed by allowing read only transactions to storage
      engines that do not support two phase commit to participate
      2pc transaction. These will be committed later separately.
      Signed-off-by: default avatarJulius Goryavsky <julius.goryavsky@mariadb.com>
      7aa86eb1
    • Julius Goryavsky's avatar
      galera: wsrep-lib submodule update · 3003a3da
      Julius Goryavsky authored
      3003a3da
    • Alexander Barkov's avatar
      MDEV-18319 BIGINT UNSIGNED Performance issue · 6606abb6
      Alexander Barkov authored
      The patch for MDEV-18319 BIGINT UNSIGNED Performance issue
      fixed this problem in 10.5.23.
      
      This patch adds only an MTR test to cover MDEV-18319.
      6606abb6
    • Vladislav Vaintroub's avatar
      MDEV-33840 tpool : switch off maintenance timer when not needed. · 09bae92c
      Vladislav Vaintroub authored
      Before patch, maintenance timer will tick every 0.4 seconds.
      After this patch, timer will tick every 0.4 seconds when necessary(
      there are delayed thread creation), switching off completely after 20
      seconds of being idle.
      09bae92c
  6. 08 Apr, 2024 5 commits
  7. 07 Apr, 2024 2 commits
  8. 06 Apr, 2024 1 commit
    • Sergei Golubchik's avatar
      sporadic failures of main.mdl_sync · a7bf0a42
      Sergei Golubchik authored
      main.mdl_sync 'innodb'                   w32 [ fail ]
              Test ended at 2024-04-06 14:11:15
      
      CURRENT_TEST: main.mdl_sync
      --- main/mdl_sync.result
      +++ main/mdl_sync.reject
      @@ -2458,6 +2458,7 @@
       SELECT LOCK_MODE, LOCK_TYPE, TABLE_SCHEMA, TABLE_NAME FROM information_schema.metadata_lock_info;
       LOCK_MODE	LOCK_TYPE	TABLE_SCHEMA	TABLE_NAME
       MDL_BACKUP_FTWRL2	Backup lock
      +MDL_SHARED	Table metadata lock	test	t2
       unlock tables;
       connection default;
       # Reaping UPDATE
      a7bf0a42
  9. 05 Apr, 2024 7 commits