1. 10 Nov, 2023 2 commits
    • Aleksey Midenkov's avatar
      MDEV-20545 Assertion col.vers_sys_end() in dict_index_t::vers_history_row · e53e7cd1
      Aleksey Midenkov authored
      Index values for row_start/row_end was wrongly calculated for inplace
      ALTER for some layout of virtual fields.
      
      Possible impact
      
        1. history row is not detected upon build clustered index for
           inplace ALTER which may lead to duplicate key errors on
           auto-increment and FTS index add.
        2. foreign key constraint may falsely fail.
        3. after inplace ALTER before server restart trx-based system
           versioning can cause server crash or incorrect data written upon
           UPDATE.
      e53e7cd1
    • Alexander Barkov's avatar
      MDEV-26743 InnoDB: CHAR+nopad does not work well · 1710b645
      Alexander Barkov authored
      The patch for "MDEV-25440: Indexed CHAR ... broken with NO_PAD collations"
      fixed these scenarios from MDEV-26743:
      - Basic latin letter vs equal accented letter
      - Two letters vs equal (but space padded) expansion
      
      However, this scenario was still broken:
      - Basic latin letter (but followed by an ignorable character)
        vs equal accented letter
      
      Fix:
      When processing for a NOPAD collation a string with trailing ignorable
      characters, like:
        '<non-ignorable><ignorable><ignorable>'
      
      the string gets virtually converted to:
        '<non-ignorable><ignorable><ignorable><space><space><space>...'
      
      After the fix the code works differently in these two cases:
      1. <space> fits into the "nchars" limit
      2. <space> does not fit into the "nchars" limit
      
      Details:
      
      1. If "nchars" is large enough (4+ in this example),
         return weights as follows:
      
        '[weight-for-non-ignorable, 1 char] [weight-for-space-character, 3 chars]'
      
        i.e. the weight for the virtual trailing space character now indicates
        that it corresponds to total 3 characters:
        - two ignorable characters
        - one virtual trailing space character
      
      2. If "nchars" is small (3), then the virtual trailing space character
         does not fit into the "nchar" limit, so return 0x00 as weight, e.g.:
      
        '[weight-for-non-ignorable, 1 char] [0x00, 2 chars]'
      
      Adding corresponding MTR tests and unit tests.
      1710b645
  2. 09 Nov, 2023 2 commits
    • Andrei's avatar
      d6872f9c
    • Alexander Barkov's avatar
      MDEV-29110 mariabackup has wrong or missing plugin-dir default? · 62d80652
      Alexander Barkov authored
      Problem:
      
      The file backup-my.cnf from the backup directory was loaded by
      "mariabackup --prepare" only in case of the explicit --target-dir given.
      It was not loaded from the default directory ./xtrabackup_backupfiles/
      in case if the explicit --target-dir was missing.
      
      In other words, it worked as follows:
      
      1. When started as "mariabackup --prepare --target-dir=DIR", mariabackup:
        a. loads defaults from "DIR/backup-my.cnf"
        b. processes data files in the specified directory DIR
      
      2. When started as "mariabackup --prepare", mariabackup:
        a. does not load defaults from "./xtrabackup_backupfiles/backup-my.cnf"
        b. processes data files in the default directory "./xtrabackup_backupfiles/"
      
      This patch fixes the second scenario, so it works as follows:
      
      2. When started as "mariabackup --prepare", mariabackup:
        a. loads defaults from "./xtrabackup_backupfiles/backup-my.cnf"
        b. processes data files in the default directory "./xtrabackup_backupfiles/"
      
      This change fixes (among others) the problem with the
      "Can't open shared library '/file_key_management.so'" error
      reported when "mariabackup --prepare" is used without --target-dir
      in combinaton with the encryption plugin.
      62d80652
  3. 08 Nov, 2023 2 commits
    • Alexander Barkov's avatar
      MDEV-27744 LPAD in vcol created in ORACLE mode makes table corrupted in non-ORACLE · 2b6d241e
      Alexander Barkov authored
      The crash happened with an indexed virtual column whose
      value is evaluated using a function that has a different meaning
      in sql_mode='' vs sql_mode=ORACLE:
      
      - DECODE()
      - LTRIM()
      - RTRIM()
      - LPAD()
      - RPAD()
      - REPLACE()
      - SUBSTR()
      
      For example:
      
      CREATE TABLE t1 (
        b VARCHAR(1),
        g CHAR(1) GENERATED ALWAYS AS (SUBSTR(b,0,0)) VIRTUAL,
        KEY g(g)
      );
      
      So far we had replacement XXX_ORACLE() functions for all mentioned function,
      e.g. SUBSTR_ORACLE() for SUBSTR(). So it was possible to correctly re-parse
      SUBSTR_ORACLE() even in sql_mode=''.
      
      But it was not possible to re-parse the MariaDB version of SUBSTR()
      after switching to sql_mode=ORACLE. It was erroneously mis-interpreted
      as SUBSTR_ORACLE().
      
      As a result, this combination worked fine:
      
      SET sql_mode=ORACLE;
      CREATE TABLE t1 ... g CHAR(1) GENERATED ALWAYS AS (SUBSTR(b,0,0)) VIRTUAL, ...;
      INSERT ...
      FLUSH TABLES;
      SET sql_mode='';
      INSERT ...
      
      But the other way around it crashed:
      
      SET sql_mode='';
      CREATE TABLE t1 ... g CHAR(1) GENERATED ALWAYS AS (SUBSTR(b,0,0)) VIRTUAL, ...;
      INSERT ...
      FLUSH TABLES;
      SET sql_mode=ORACLE;
      INSERT ...
      
      At CREATE time, SUBSTR was instantiated as Item_func_substr and printed
      in the FRM file as substr(). At re-open time with sql_mode=ORACLE, "substr()"
      was erroneously instantiated as Item_func_substr_oracle.
      
      Fix:
      
      The fix proposes a symmetric solution. It provides a way to re-parse reliably
      all sql_mode dependent functions to their original CREATE TABLE time meaning,
      no matter what the open-time sql_mode is.
      
      We take advantage of the same idea we previously used to resolve sql_mode
      dependent data types.
      
      Now all sql_mode dependent functions are printed by SHOW using a schema
      qualifier when the current sql_mode differs from the function sql_mode:
      
      SET sql_mode='';
      CREATE TABLE t1 ... SUBSTR(a,b,c) ..;
      SET sql_mode=ORACLE;
      SHOW CREATE TABLE t1;   ->   mariadb_schema.substr(a,b,c)
      
      SET sql_mode=ORACLE;
      CREATE TABLE t2 ... SUBSTR(a,b,c) ..;
      SET sql_mode='';
      SHOW CREATE TABLE t1;   ->   oracle_schema.substr(a,b,c)
      
      Old replacement names like substr_oracle() are still understood for
      backward compatibility and used in FRM files (for downgrade compatibility),
      but they are not printed by SHOW any more.
      2b6d241e
    • Marko Mäkelä's avatar
      MDEV-13626 Merge InnoDB test cases from MySQL 5.7 · 228b7e4d
      Marko Mäkelä authored
      This imports and adapts a number of MySQL 5.7 test cases that are
      applicable to MariaDB.
      
      Some tests for old bug fixes are not that relevant because the code
      has been refactored since then (especially starting with
      MariaDB Server 10.6), and the tests would not reproduce the
      original bug if the fix was reverted.
      
      In the test innodb_fts.opt, there are many duplicate MATCH ranks, which
      would make the results nondeterministic. The test was stabilized by
      changing some LIMIT clauses or by adding sorted_result in those cases
      where the purpose of a test was to show that no sorting took place
      in the server.
      
      In the test innodb_fts.phrase, MySQL 5.7 would generate FTS_DOC_ID that
      are 1 larger than in MariaDB. In innodb_fts.index_table the difference is 2.
      This is because in MariaDB, fts_get_next_doc_id() post-increments
      cache->next_doc_id, while MySQL 5.7 pre-increments it.
      
      Reviewed by: Thirunarayanan Balathandayuthapani
      228b7e4d
  4. 07 Nov, 2023 1 commit
    • Monty's avatar
      Ensure that process "State" is properly cleaned after query execution · 2447172a
      Monty authored
      In some cases "SHOW PROCESSLIST" could show "Reset for next command"
      as State, even if the previous query had finished properly.
      
      Fixed by clearing State after end of command and also setting the State
      for the "Connect" command.
      
      Other things:
      - Changed usage of 'thd->set_command(COM_SLEEP)' to
        'thd->mark_connection_idle()'.
      - Changed thread_state_info() to return "" instead of NULL. This is
        just a safety measurement and in line with the logic of the
        rest of the function.
      2447172a
  5. 06 Nov, 2023 2 commits
  6. 05 Nov, 2023 10 commits
  7. 04 Nov, 2023 1 commit
  8. 03 Nov, 2023 7 commits
    • Monty's avatar
      rpl.rpl_invoked_features fails sporadically with "Duplicate key error" · e5a5573f
      Monty authored
      The reason was that Event e11 was re-executed before
      "ALTER EVENT e11 DISABLE" had been executed.
      
      Fixed by increasing re-schedule time
      
      Other things:
      - Removed double accounting of 'execution_count'. It was incremented in
        top->mark_last_executed(thd) that was executed a few lines earlier.
      e5a5573f
    • Monty's avatar
      MDEV-32518 Test failure: ./mtr --no-reorder main.log_slow_debug main.subselect · 7533062f
      Monty authored
      There where two errors left from the previous fix.
      
      - subselect.test assumes that mysql.slow_log is empty. This was not
        enforced.
      - subselect.test dropped a file that does not exists (for safety).
        This was fixed by ensuring we don't get a warning if the file does
        not exist.
      7533062f
    • Kristian Nielsen's avatar
      Fix mariabackup InnoDB recovered binlog position on server upgrade · 9fa718b1
      Kristian Nielsen authored
      Before MariaDB 10.3.5, the binlog position was stored in the TRX_SYS page,
      while after it is stored in rollback segments. There is code to read the
      legacy position from TRX_SYS to handle upgrades. The problem was if the
      legacy position happens to compare larger than the position found in
      rollback segments; in this case, the old TRX_SYS position would incorrectly
      be preferred over the newer position from rollback segments.
      
      Fixed by always preferring a position from rollback segments over a legacy
      position.
      Signed-off-by: default avatarKristian Nielsen <knielsen@knielsen-hq.org>
      9fa718b1
    • Kristian Nielsen's avatar
      Revert: MDEV-22351 InnoDB may recover wrong information after RESET MASTER · f8f5ed22
      Kristian Nielsen authored
      This commit can cause the wrong (old) binlog position to be recovered by
      mariabackup --prepare. It implements that the value of the FIL_PAGE_LSN is
      compared to determine which binlog position is the last one and should be
      recoved. However, it is not guaranteed that the FIL_PAGE_LSN order matches the
      commit order, as is assumed by the code. This is because the page LSN could be
      modified by an unrelated update of the page after the commit.
      
      In one example, the recovery first encountered this in trx_rseg_mem_restore():
      
        lsn=27282754  binlog position (./master-bin.000001, 472908)
      
      and then later:
      
        lsn=27282699  binlog position (./master-bin.000001, 477164)
      
      The last one 477164 is the correct position. However, because the LSN
      encountered for the first one is higher, that position is recovered instead.
      This results in too old binlog position, and a newly provisioned slave will
      start replicating too early and get duplicate key error or similar.
      Signed-off-by: default avatarKristian Nielsen <knielsen@knielsen-hq.org>
      f8f5ed22
    • Kristian Nielsen's avatar
    • Kristian Nielsen's avatar
      Restore getting InnoDB position from mariabackup --no-lock · 167fe664
      Kristian Nielsen authored
      Revert the patch for MDEV-18917, which removed this functionality.
      This restores that mariabackup --prepare recovers the transactional
      binlog position from the redo log, and writes it to the file
      xtrabackup_binlog_pos_innodb.
      
      This position is updated only on every InnoDB commit. This means that
      if the last event in the binlog at the time of backup is a DDL or
      non-transactional update, the recovered position from --no-lock will
      be behind the state of the backup.
      Signed-off-by: default avatarKristian Nielsen <knielsen@knielsen-hq.org>
      167fe664
    • Rex's avatar
      MDEV-31995-fix short fix for memory leak introduced in MDEV-31995 · e6953374
      Rex authored
      list elements not correctly allocated in push_back.
      e6953374
  9. 02 Nov, 2023 8 commits
  10. 01 Nov, 2023 4 commits
    • Igor Babaev's avatar
      MDEV-28615 Crash caused by multi-table UPDATE over derived with hanging CTE · 9e321a44
      Igor Babaev authored
      This bug affected only multi-table update statements and in very rare
      cases: one of the tables used at the top level of the statement must be
      a derived table containg a row construct with a subquery including hanging
      CTE.
      
      Before this patch was applied the function prepare_unreferenced() of the
      class With_element when invoked for the the hangin CTE did not properly
      restored the value of thd->lex->context_analysis_only. As a result it
      became 0 after the call of this function.
      For a query affected by the bug this function is called when
      JOIN::prepare() is called for the subquery with a hanging CTE. This happens
      when Item_row::fix_fields() calls fix_fields() for the subquery. Setting
      the value of thd->lex->context_analysis_only forces the caller function
      Item_row::fix_fields() to invoke the virtual method is_null() for the
      subquery that leads to execution of it. It causes an assertion failure
      because the call of Item_row::fix_fields() happens during the invocation
      of Multiupdate_prelocking_strategy::handle_end() that calls the function
      mysql_derived_prepare() for the derived table used by the UPDATE at the
      time when proper locks for the statement tables has not been acquired yet.
      
      With this patch the value of thd->lex->context_analysis_only is restored
      to CONTEXT_ANALYSIS_ONLY_DERIVED that is set in the function
      mysql_multi_update_prepare().
      
      Approved by Oleksandr Byelkin <sanja@mariadb.com>
      9e321a44
    • Brandon Nesterenko's avatar
      MDEV-32655: rpl_semi_sync_slave_compressed_protocol.test assert_only_after is wrong · 80ea3590
      Brandon Nesterenko authored
      The MTR test rpl.rpl_semi_sync_slave_compressed_protocol scans the
      log file to ensure there is no magic number error. It attempts to
      only scan the log files of the current test; however, the variable
      which controls this, , is initialized incorrectly,
      and it thereby scans the entire log file, which includes output from
      prior tests. This causes it to fail if a test which expects this
      error runs previously on the same worker.
      
      This patch fixes the assert_only_after so the test only scans
      through its own log contents.
      80ea3590
    • Brandon Nesterenko's avatar
      MDEV-32651: Lost Debug_sync signal in rpl_sql_thd_start_errno_cleared · c341743e
      Brandon Nesterenko authored
      The test rpl.rpl_sql_thd_start_errno_cleared can lose a debug_sync
      signal, as there is a RESET immediately following a SIGNAL. When the
      signal is lost, the sql_thread is stuck in a WAIT_FOR clause until
      it times out, resulting in long test times (albeit still
      successful).
      
      This patch extends the test to ensure the debug_sync signal was
      received before issuing the RESET
      c341743e
    • Alexander Barkov's avatar
      MDEV-32645 CAST(AS UNSIGNED) fails with --view-protocol · 4b65859a
      Alexander Barkov authored
      Item_char_typecast::print() did not print the "binary" keyword
      in such cases:
         CAST('a' AS CHAR CHARACTER SET latin1 BINARY)
      
      This caused a difference in "mtr" vs "mtr --view-protocol"
      4b65859a
  11. 31 Oct, 2023 1 commit
    • Igor Babaev's avatar
      MDEV-32569 Failure when executing PS for query using IN subquery · 9b049266
      Igor Babaev authored
      This patch corrects the fix for MDEV-32369. No Item_direct_ref_to_item
      objects should be allocated at the optimizer phase after permanent
      rewritings have been done.
      
      The patch also adds another test case for MDEV-32369 that uses MyISAM
      with more than one row.
      
      Approved by Rex Johnston <rex.johnston@mariadb.com>
      9b049266