1. 22 Dec, 2022 1 commit
  2. 19 Dec, 2022 1 commit
  3. 14 Dec, 2022 1 commit
  4. 13 Dec, 2022 4 commits
    • Daniel Black's avatar
      MDEV-21187: log_slow_filter="" logs queries not using indexes · 697dbd15
      Daniel Black authored
      Consistent with MDEV-4206 and empty log_slow_filter still means
      no explict filtering. Since 21518ab2 however the
      log_queries_not_using_indexes became stored in the same variable.
      
      As we need to test for the absense of log_queries_not_using_indexes
      the SERVER_QUERY_NO_INDEX USED part of log_slow_statement, the empty
      criteria resulted in an always true to log queries not using indexes if
      log_slow_filter was set to empty.
      
      Adjusted the log_slow.test for MDEV-4206 as slow_log_query has been
      global and session for a while and it was relying on the MDEV-21187
      buggy behavior to detect a slow query.
      
      Reviewer: Monty
      697dbd15
    • Daniel Black's avatar
      MDEV-18591: mysql_install_db - pass --log-error to mysqld in install (#2363) · acfaa045
      Daniel Black authored
      Previously we parsed it out in mysql_install_db for use in the error
      message, but failed to pass it to mysqld in the bootstrap.
      
      Also match log_error as it might appear in the .cnf files.
      
      Thanks Michal Schorm for the test case.
      
      Reviewed by: Faustin Lammler
      acfaa045
    • Sergei Petrunia's avatar
      MDEV-30218: Incorrect optimization for rowid_filtering · 87eccd78
      Sergei Petrunia authored
      (Patch from Monty, slightly amended)
      
      Fix rowid filtering optimization in best_access_path():
      
      == Ref access + rowid filtering ==
      The cost computations compare #records and index-only scan cost
      (keyread_tmp) to find out the per-record advantage one will get if
      they skip reading full table record.
      
      The computations produce wrong result when:
      
      - the #records are "clipped down" with s->worst_seeks or
        thd->variables.max_seeks_for_key. keyread_tmp is not clipped
        this way so the numbers are not comparable.
      
      - access_factor is negative. This means index_only read is
        cheaper than non-index-only read.
      
      This patch makes the optimizer not to consider Rowid Filtering in
      such cases.
      The decision is logged in the Optimizer Trace using
      "rowid_filter_skipped" name.
      
      == Range access + rowid filtering ==
      when considering to use Rowid Filter with range access, do multiply
      keyread_tmp by record_count. That way, it is comparable with the
      range access's estimate, which is multiplied by record_count.
      87eccd78
    • Marko Mäkelä's avatar
      Merge 10.3 into 10.4 · fdf43b5c
      Marko Mäkelä authored
      fdf43b5c
  5. 12 Dec, 2022 2 commits
  6. 10 Dec, 2022 1 commit
    • Julius Goryavsky's avatar
      MDEV-29814: galera_var_notify_ssl_ipv6 causes testing system to hang · a4914008
      Julius Goryavsky authored
      This commit fixes the test system hanging due to
      the galera_var_notify_ssl_ipv6 test and also brings
      the wsrep_notify[_ssl].sh files in line with each other
      between the user template and the mtr suite.
      
      Quotes are also added here to avoid problems if the
      user specifies the value of one of the variables at the
      beginning of the file containing shell-specific characters,
      for example, if the password or username specified in the
      PSWD and USER variables will contain the "$" character.
      
      Also fixed an issue with automatic --ssl-verify-server-cert
      option substitution when the corresponding value is set
      by the user to "1" or "on".
      
      Also fixed some tests here to avoid joining one of the nodes
      to another cluster when the nodes are restarted from the mtr
      side, which can lead to random failures when testing with
      buildbot.
      a4914008
  7. 09 Dec, 2022 2 commits
    • Julius Goryavsky's avatar
      MDEV-29814: galera_var_notify_ssl_ipv6 causes testing system to hang · 8f309732
      Julius Goryavsky authored
      This commit fixes the test system hanging due to
      the galera_var_notify_ssl_ipv6 test and also brings
      the wsrep_notify[_ssl].sh files in line with each other
      between the user template and the mtr suite.
      
      Quotes are also added here to avoid problems if the
      user specifies the value of one of the variables at the
      beginning of the file containing shell-specific characters,
      for example, if the password or username specified in the
      PSWD and USER variables will contain the "$" character.
      
      Also fixed an issue with automatic --ssl-verify-server-cert
      option substitution when the corresponding value is set
      by the user to "1" or "on".
      
      Also fixed some tests here to avoid joining one of the nodes
      to another cluster when the nodes are restarted from the mtr
      side, which can lead to random failures when testing with
      buildbot.
      8f309732
    • Marko Mäkelä's avatar
      MDEV-29144 ER_TABLE_SCHEMA_MISMATCH or crash on DISCARD/IMPORT · 782b2a75
      Marko Mäkelä authored
      mysql_discard_or_import_tablespace(): On successful
      ALTER TABLE...DISCARD TABLESPACE, evict the table handle from the
      table definition cache, so that ha_innobase::close() will be invoked,
      like InnoDB expects to be the case. This will avoid an assertion failure
      ut_a(table->get_ref_count() == 0) during IMPORT TABLESPACE.
      
      ha_innobase::open(): Do not issue any ER_TABLESPACE_DISCARDED warning.
      Member functions for DML will do that.
      
      ha_innobase::truncate(), ha_innobase::check_if_supported_inplace_alter():
      Issue ER_TABLESPACE_DISCARDED warnings, to compensate for the removal of
      the warning in ha_innobase::open().
      
      row_quiesce_write_indexes(): Only write information about committed
      indexes. The ALTER TABLE t NOWAIT ADD INDEX(c) in the nondeterministic
      test case will most of the time fail due to a metadata lock (MDL) timeout
      and leave behind an uncommitted index.
      
      Reviewed by: Sergei Golubchik
      782b2a75
  8. 08 Dec, 2022 1 commit
    • Daniel Black's avatar
      MDEV-30150 ST_GeomFromGeoJSON, 'geometry' before 'type: feature' error · 8f3631d0
      Daniel Black authored
      The geometry type requires Type:"Feature" but the feature need
      not be first in the JSON structure.
      
      Adjust code to return an error if geometry isn't a JSON object,
      but continue parsing searching for Type: "Feature" to trigger
      the geometry parsing.
      
      Thanks Derick Magnusen for the bug report.
      8f3631d0
  9. 07 Dec, 2022 3 commits
  10. 05 Dec, 2022 1 commit
    • Anel Husakovic's avatar
      dgcov: parsing without dot to get specific version · a59dffb0
      Anel Husakovic authored
      - Regression introduced 7baf24a0 for multidigit gcc dump.
      There is no dot in `dumpversion`.
      ```
      $ gcc -dumpversion
      10
      ```
      Otherwise it will fail and not produce the output
      ```
      Running dgcov
      Name "IO::Uncompress::Gunzip::GunzipError" used only once: possible typo at ./dgcov.pl line 197.
      Cannot parse gcc -dumpversion: 9
      ```
      
      - The warning `once` is always generated:
      ```
      Running dgcov
      Name "IO::Uncompress::Gunzip::GunzipError" used only once: possible typo at ./dgcov.pl line 197.
      <number>
      ```
      Suppresing the line `Name "IO::Uncompress::Gunzip::GunzipError" used only once: possible typo at ./dgcov.pl line 197.`
      with the patch.
      
      - Reviewed by: <>
      a59dffb0
  11. 03 Dec, 2022 1 commit
  12. 02 Dec, 2022 16 commits
  13. 01 Dec, 2022 1 commit
  14. 30 Nov, 2022 1 commit
    • Vicențiu Ciorbaru's avatar
      MDEV-30023 Revoking Privilege on the Column Yields the Error · b527bfe8
      Vicențiu Ciorbaru authored
      The change from MDEV-29465 exposed a flaw in replace_column_table
      where again we were not properly updating the column-level bits.
      
      replace_table_table was changed in MDEV-29465 to properly update
      grant_table->init_cols, however replace_column_table still only
      modified grant_column->rights when the GRANT_COLUMN already existed.
      
      This lead to a missmatch between GRANT_COLUMN::init_rights and
      GRANT_COLUMN::rights, *if* the GRANT_COLUMN already existed.
      
      As an example:
      
      GRANT SELECT (col1) ...
      Here:
      For col1
      GRANT_COLUMN::init_rights and GRANT_COLUMN::rights are set to 1 (SELECT) in
      replace_column_table.
      
      GRANT INSERT (col1) ...
      Here, without this patch GRANT_COLUMN::init_rights is still 1 and
      GRANT_COLUMN::rights is 3 (SELECT_PRIV | INSERT_PRIV)
      
      Finally, if before this patch, one does:
      
      REVOKE SELECT (col1) ...
      
      replace_table_table will see that init_rights loses bit 1 thus it
      considers there are no more rights granted on that particular table.
      
      This prompts the whole GRANT_TABLE to be removed via the first revoke,
      when the GRANT_COLUMN corresponding to it should still have init_rights == 2.
      
      By also updating replace_column_table to keep init_rights in sync
      properly, the issue is resolved.
      
      Reviewed by <serg@mariadb.com>
      b527bfe8
  15. 29 Nov, 2022 4 commits
    • Anel Husakovic's avatar
      MDEV-28299: Server crashes in XINDXS::Range/CntIndexRange (Connect engine) · 6c973be2
      Anel Husakovic authored
      - Bug happens only in case when the range function on empty key single
      column index (XINDEXS) is used.
      - Solution is to return with empty result in this scenario.
      
      Reviewed by: <>
      6c973be2
    • Robin Newhouse's avatar
      [MDEV-30002] Skip bad_startup_options test when running as root (#2344) · 9a95838a
      Robin Newhouse authored
      Commit 32158be7 added a new test `bad_startup_options`. This test fails
      if run as root, which is common on many CI systems.
      
      This test should include `not_as_root.inc` so it is skipped, just
      like all other similar tests in MariaDB.
      
      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.
      9a95838a
    • Marko Mäkelä's avatar
      Add a global suppression for O_DIRECT failures · 499ef7bf
      Marko Mäkelä authored
      Fixes up commit b8ad6fbd
      499ef7bf
    • sjaakola's avatar
      MDEV-29512 deadlock between commit monitor and THD::LOCK_thd_data mutex · 07a06022
      sjaakola authored
      This commit contains only a mtr test for reproducing the issue in MDEV-29512
      The actual fix will be pushed in wsrep-lib repository
      
      The hanging in MDEV-29512 happens when binlog purging is attempted, and there is
      one local BF aborted transaction waiting for commit monitor.
      
      The test will launch two node cluster and enable binlogging with expire log days,
      to force binlog purging to happen.
      A local transaction is executed so that will become BF abort victim, and has advanced
      to replication stage waiting for commit monitor for final cleanup (to mark position in innodb)
      after that, applier is released to complete the BF abort and due to binlog configuration,
      starting the binlog purging. This is where the hanging would occur, if code is buggy
      Reviewed-by: default avatarJan Lindström <jan.lindstrom@mariadb.com>
      07a06022