1. 09 Jun, 2022 1 commit
  2. 08 Jun, 2022 1 commit
  3. 07 Jun, 2022 3 commits
  4. 03 Jun, 2022 6 commits
    • Nayuta Yanagisawa's avatar
      MDEV-27648 fixup: delete unused member of st_spider_transaction · 0e8342d4
      Nayuta Yanagisawa authored
      st_spider_transaction::thd_hash_value is no longer used because of
      MDEV-27648.
      0e8342d4
    • Alexander Barkov's avatar
      MDEV-28117 Multiple conflicting table COLLATE clauses are not rejected · c910fdc8
      Alexander Barkov authored
      This problem was earlier fixed by the patch for MDEV-27896.
      
      Now adding only MTR tests from the report.
      c910fdc8
    • Marko Mäkelä's avatar
      MDEV-28540 Deprecate and ignore the parameter innodb_prefix_index_cluster_optimization · fdc039db
      Marko Mäkelä authored
      The parameter innodb_prefix_index_cluster_optimization used to enable an
      optimization that was added in cb37c557
      and was disabled by default.
      
      We will unconditionally enable the extension and mark the parameter
      as deprecated.
      
      Related to this, the counters
      Innodb_secondary_index_triggered_cluster_reads and
      Innodb_secondary_index_triggered_cluster_reads_avoided
      allowed to determine the usefulness of this optimization.
      
      Now that the configuration parameter is disabled, the counters
      do not serve any useful purpose and can be removed.
      
      row_search_with_covering_prefix(): Fix a bug that caused an
      incorrect result to be returned.
      fdc039db
    • Marko Mäkelä's avatar
      MDEV-28539 Some InnoDB counters are duplicating generic SHOW STATUS · 0dab74ff
      Marko Mäkelä authored
      The InnoDB srv_stats counters
      n_rows_updated, n_rows_deleted, n_rows_inserted, and n_rows_read
      are duplicating
      Handler_update, Handler_delete, Handler_write, and Handler_read_ counters.
      
      Updating those counters is not free, especially because some counters
      are furthermore split to distinguish a rare case of modifying tables
      in the system schema.
      0dab74ff
    • Marko Mäkelä's avatar
      MDEV-28554: Remove innodb_version · 6b9bba41
      Marko Mäkelä authored
      INNODB_VERSION_STR: Replaced with PACKAGE_VERSION (non-functional change).
      
      INNODB_VERSION_SHORT: Replaced with direct use of
      MYSQL_VERSION_MAJOR << 8 | MYSQL_VERSION_MINOR.
      
      check_version(): Simplify the mariadb-backup version check,
      and require the server version to be MariaDB 10.8 or later,
      because that is when the InnoDB redo log format was last changed.
      6b9bba41
    • Marko Mäkelä's avatar
      MDEV-28542 Useless output in SHOW ENGINE INNODB STATUS · 12aeb9fa
      Marko Mäkelä authored
      srv_printf_innodb_monitor(): Only display an ADAPTIVE HASH INDEX
      section if the adaptive hash index is enabled.
      
      ibuf_print(): Only display an INSERT BUFFER section if the
      change buffer is not empty.
      12aeb9fa
  5. 31 May, 2022 2 commits
  6. 27 May, 2022 1 commit
  7. 26 May, 2022 1 commit
    • Tingyao Nian's avatar
      MDEV-24815 Add 'allow-suspicious-udfs' and 'skip-grant-tables' to system variables · b3df1ec9
      Tingyao Nian authored
      Make two existing command line options "allow-suspicious-udfs" and
      "skip-grant-tables" visible as global system variables.
      
      Both options have security implications, but users were not able to check
      their states in the server prior to this change. This was a security
      issue, as the user may not be aware if the options are enabled. By adding
      them into system variables, it increases users’ visibility into their
      security configurations.
      
      Create new MTR tests to verify that the system variables align with the
      command line options. Minor adjustments to the existing MTR due to the new
      members in system variables.
      
      Before:
          mysql> SHOW VARIABLES WHERE
          Variable_Name LIKE 'allow_suspicious_udfs' OR
          Variable_Name LIKE 'skip_grant_tables';
          Empty set (0.000 sec)
      
      After:
          mysql> SHOW VARIABLES WHERE
          Variable_Name LIKE 'allow_suspicious_udfs' OR
          Variable_Name LIKE 'skip_grant_tables';
          +-----------------------+-------+
          | Variable_name         | Value |
          +-----------------------+-------+
          | allow_suspicious_udfs | OFF   |
          | skip_grant_tables     | OFF   |
          +-----------------------+-------+
      
      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.
      b3df1ec9
  8. 25 May, 2022 5 commits
    • Alexander Barkov's avatar
      A cleanup for MDEV-27896 Wrong result upon `COLLATE latin1_bin CHARACTER SET... · e9adc395
      Alexander Barkov authored
      A cleanup for MDEV-27896 Wrong result upon `COLLATE latin1_bin CHARACTER SET latin1` on the table or the database level
      
      Changing the error messages in a statement like this:
      
      CREATE DATABASE db1
               COLLATE utf8mb4_bin
               CHARACTER SET utf8mb4
               CHARACTER SET latin1;
      
      from
        COLLATION 'utf8mb4_bin' is not valid for CHARACTER SET 'latin1'
      
      to a more expected:
      
        Conflicting declarations: 'CHARACTER SET utf8mb4' and 'CHARACTER SET latin1'
      
      In order to do this:
      - Adding a new type TYPE_CHARACTER_SET_COLLATE_EXACT into
        Lex_exact_charset_extended_collation_attrs_st
      
      - Removing m_had_charset_exact from its descendant class
        Lex_extended_charset_extended_collation_attrs_st
      
      Additional cleanup:
      - Changing methods in Lex_exact_charset_extended_collation_attrs_st
        set_charset(), set_charset_collate_default(), set_charset_collate_binary()
        to get Lex_exact_charset instead CHARSET_INFO as a parameter,
        to guarantee that the argument is only CHARACTER SET and does not have
        any COLLATE clauses yet. This change is not directly related to
        the error message change.
      e9adc395
    • Marko Mäkelä's avatar
      Merge 10.9 into 10.10 · 3cc8539d
      Marko Mäkelä authored
      3cc8539d
    • Marko Mäkelä's avatar
      Merge 10.8 into 10.9 · 1ace1075
      Marko Mäkelä authored
      1ace1075
    • Marko Mäkelä's avatar
      man: adjust major version to 10.8 · 105647df
      Marko Mäkelä authored
      105647df
    • Marko Mäkelä's avatar
      Merge 10.7 into 10.8 · c2bae9c7
      Marko Mäkelä authored
      c2bae9c7
  9. 24 May, 2022 9 commits
    • Daniel Black's avatar
      man: adjust major version to 10.7 · 61727fa4
      Daniel Black authored
      61727fa4
    • Marko Mäkelä's avatar
      Merge 10.6 into 10.7 · f00ac20b
      Marko Mäkelä authored
      f00ac20b
    • Alexander Barkov's avatar
      Main patch MDEV-27896 Wrong result upon `COLLATE latin1_bin CHARACTER SET... · 208addf4
      Alexander Barkov authored
      Main patch MDEV-27896 Wrong result upon `COLLATE latin1_bin CHARACTER SET latin1` on the table or the database level
      
      Also fixes
      MDEV-27782 Wrong columns when using table level `CHARACTER SET utf8mb4 COLLATE DEFAULT`
      MDEV-28644 Unexpected error on ALTER TABLE t1 CONVERT TO CHARACTER SET utf8mb3, DEFAULT CHARACTER SET utf8mb4
      208addf4
    • Norio Akagi's avatar
      MDEV-27892 Improve an error message for foreign server exists (backport) · 571a8f4a
      Norio Akagi authored
      Improve and add more languages for the ERROR 1476: Foreign Server
      already exists.
      571a8f4a
    • Daniel Black's avatar
      Merge branch 10.5 into 10.6 · a2bdd528
      Daniel Black authored
      a2bdd528
    • Daniel Black's avatar
      MDEV-28153: Debian autobake to get control (postfix) · 0d9aba05
      Daniel Black authored
      The debian/mariabd-plugin-columnstore.install should
      not have been committed. It was removed on other branches,
      just 10.6 was missed. This prevented packages being built
      because the debain/control wasn't populated.
      0d9aba05
    • Tuukka Pasanen's avatar
      MDEV-28376: Make sure available Perl MariaDB DBI driver is chosen · 44359040
      Tuukka Pasanen authored
      Commit introduces automatic detection which supported
      Perl MariaDB DBI driver is available:
      
       * DBD::mysql
       * DBD::MariaDB
      
      If nothing is then bail out and die
      
      Current Detection prefers Perl DBD:MariaDB driver.
      
      This is mainly for older Linux distros or Windows which does not
      have Perl DBD:MariaDB packaged or does not want to use Perl cpan command.
      44359040
    • Norio Akagi's avatar
      MDEV-27892 Improve an error message for foreign server exists · 99566fc8
      Norio Akagi authored
      Improve and add more languages for the ERROR 1476: Foreign Server
      already exists.
      99566fc8
    • Tuukka Pasanen's avatar
      MDEV-28587: Remove '-10.9' suffixes entries from Debian control Conflicts/Replaces · 956d93b5
      Tuukka Pasanen authored
      MariaDB Debian packages does not have version suffix anymore since MariaDB version 10.9.
      This makes obsolete need for the suffix in debian/control file.
      
      Fix Lintian errors:
      
      E: mariadb source: version-substvar-for-external-package Conflicts (line 408) ${source:Version} mariadb-client -> mariadb-client-10.9
      E: mariadb source: version-substvar-for-external-package Conflicts (line 575) ${source:Version} mariadb-server-core -> mariadb-server-core-10.9
      E: mariadb source: version-substvar-for-external-package Conflicts (line 711) ${source:Version} mariadb-server -> mariadb-server-10.9
      E: mariadb source: version-substvar-for-external-package Replaces (line 330) ${source:Version} mariadb-client-core -> mariadb-client-10.9
      E: mariadb source: version-substvar-for-external-package Replaces (line 330) ${source:Version} mariadb-client-core -> mariadb-server-core-10.9
      E: mariadb source: version-substvar-for-external-package Replaces (line 481) ${source:Version} mariadb-client -> mariadb-client-10.9
      E: mariadb source: version-substvar-for-external-package Replaces (line 481) ${source:Version} mariadb-client -> mariadb-client-core-10.9
      E: mariadb source: version-substvar-for-external-package Replaces (line 481) ${source:Version} mariadb-client -> mariadb-server-10.9
      E: mariadb source: version-substvar-for-external-package Replaces (line 481) ${source:Version} mariadb-client -> mariadb-server-core-10.9
      E: mariadb source: version-substvar-for-external-package Replaces (line 626) ${source:Version} mariadb-server-core -> mariadb-client-10.9
      E: mariadb source: version-substvar-for-external-package Replaces (line 626) ${source:Version} mariadb-server-core -> mariadb-server-10.9
      E: mariadb source: version-substvar-for-external-package Replaces (line 748) ${source:Version} mariadb-server -> mariadb-client-10.9
      E: mariadb source: version-substvar-for-external-package Replaces (line 748) ${source:Version} mariadb-server -> mariadb-server-10.9
      956d93b5
  10. 23 May, 2022 11 commits
    • Tingyao Nian's avatar
      MDEV-22023 Update man pages titles to say MariaDB instead of MySQL · 3dd3dccb
      Tingyao Nian authored
      When reading the man page of e.g. 'mysql' on a system with MariaDB
      installed one would actually see the man page of 'mariadb'. However the
      man page had no indication of the page being for 'mariadb', which was
      confusing for users.
      
      Fix this by updating the man page title lines to use mariadb-* instead
      of mysql* for MariaDB binaries that are drop-in replacements for MySQL
      equivalents, indicating that the commands are actually of the MariaDB
      version.
      
      In long term, all the commands in man pages should be replaced by their
      MariaDB counterparts. Update the title lines as a start, and only those
      that exist as symlinks to their MariaDB counterparts.
      
      Before:
      
          man mariadb-upgrade | head -n 1
          MYSQL_UPGRADE(1) ...
      
      After:
      
          man mariadb-upgrade | head -n 1
          MARIADB-UPGRADE(1) ...
      
      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.
      3dd3dccb
    • Vladislav Vaintroub's avatar
      MDEV-28648 main.ssl_timeout fails with OpenSSL 3.0.3 · babb8032
      Vladislav Vaintroub authored
      Depending on OpenSSL version, and at least in 3.0.3, the client-side socket
      timeout is reported as generic error (SSL_ERROR_SYSCALL), losing further
      details (both errno and GetLastError() return 0). This results in client
      reporting "Unknown OpenSSL error" 2026, instead of another generic
      "Lost connection to server during query" 2013
      
      Adjusted test case.
      babb8032
    • Honza Horak's avatar
      MDEV-27778 md5 in FIPS crashes with OpenSSL 3.0.0 · 78412ab0
      Honza Horak authored
      OpenSSL 3.0.0+ does not support EVP_MD_CTX_FLAG_NON_FIPS_ALLOW any longer.
      In OpenSSL 1.1.1 the non FIPS allowed flag is context specific, while
      in 3.0.0+ it is a different EVP_MD provider.
      
      Fixes #2010
      
      part of MDEV-28133
      78412ab0
    • Oleksandr Byelkin's avatar
      Revert "don't build with OpenSSL 3.0, it doesn't work before MDEV-25785" · 987d16a0
      Oleksandr Byelkin authored
      This reverts commit c9beef43, because
      we have OpenSSL 3.0 support here.
      
      part of MDEV-28133
      987d16a0
    • Vladislav Vaintroub's avatar
      MDEV-25785 Add support for OpenSSL 3.0 · f0fa40ef
      Vladislav Vaintroub authored
      Summary of changes
      
      - MD_CTX_SIZE is increased
      
      - EVP_CIPHER_CTX_buf_noconst(ctx) does not work anymore, points
        to nobody knows where. The assumption made previously was that
        (since the function does not seem to be documented)
        was that it points to the last partial source block.
        Add own partial block buffer for NOPAD encryption instead
      
      - SECLEVEL in CipherString in openssl.cnf
        had been downgraded to 0, from 1, to make TLSv1.0 and TLSv1.1 possible
         (according to https://github.com/openssl/openssl/blob/openssl-3.0.0/NEWS.md
         even though the manual for SSL_CTX_get_security_level claims that it
         should not be necessary)
      
      - Workaround Ssl_cipher_list issue, it now returns TLSv1.3 ciphers,
        in addition to what was set in --ssl-cipher
      
      - ctx_buf buffer now must be aligned to 16 bytes with openssl(
        previously with WolfSSL only), ot crashes will happen
      
      - updated aes-t , to be better debuggable
        using function, rather than a huge multiline macro
        added test that does "nopad" encryption piece-wise, to test
        replacement of EVP_CIPHER_CTX_buf_noconst
      
      part of MDEV-28133
      f0fa40ef
    • Alexander Barkov's avatar
      Step#3 MDEV-27896 Wrong result upon `COLLATE latin1_bin CHARACTER SET latin1`... · 89adedcb
      Alexander Barkov authored
      Step#3 MDEV-27896 Wrong result upon `COLLATE latin1_bin CHARACTER SET latin1` on the table or the database level
      
      Splitting Lex_exact_charset_extended_collation_attrs_st into small components.
      
      - Adding classes:
        * Lex_exact_charset
        * Lex_context_collation
        * Lex_exact_collation
        * Lex_extended_collation_st
        * Lex_extended_collation
        and moving pieces of the code from methods
        * merge_charset_clause_and_collate_clause()
        * merge_collate_clause_and_collate_clause()
        into smaller methods in the new classes.
        It's easier to read, handle and reuse the code this way.
      
      - Moving static methods find_default_collation() and find_binary_collation()
        from Lex_exact_charset_extended_collation_attrs_st to non-static methods in
        Lex_exact_charset_opt_extended_collate, as now it's a better place for them.
      
      - Using Lex_extended_collation_st in sql_yacc.yy to handle COLLATE clauses,
        to handle both context and extended collations
        (instead of the previous notation with NULL CHARSET_INFO pointer
         meaning DEFAULT, and not-NULL meaning an exact collation).
        This change will also help to add more context (UCA1400) collations soon.
        The old notation with CHARSET_INFO won't be enough.
      
      - Adding LEX::set_names() and reusing it in two places in sql_yacc.yy
      
      - Removing the opt_collate_or_default rule. It's was used only
        to handle the CONVERT TO related grammar. Had to add some code duplication,
        but it will be gone in one of the next commits.
      
      This change will also soon help to add
      Lex_extended_charset_extended_collation_attrs_st -
      a new class to handle table and database level CHARACTER SET and COLLATE
      clauses easier.
      89adedcb
    • Alexander Barkov's avatar
      Step#2 MDEV-27896 Wrong result upon `COLLATE latin1_bin CHARACTER SET latin1`... · e7f635e2
      Alexander Barkov authored
      Step#2 MDEV-27896 Wrong result upon `COLLATE latin1_bin CHARACTER SET latin1` on the table or the database level
      
      - Renaming Lex_charset_collation_st to
        Lex_exact_charset_extended_collation_attrs_st
      
      - Renaming Lex_explicit_charset_opt_collate to
        Lex_exact_charset_opt_extended_collate
      
      - Renaming their methods charset_collation() to charset_info(),
        so the name clearly tells that it returns CHARSET_INFO.
        Soon we'll have new classes (e.g. Lex_exact_collation) and
        methods returning Lex_exact_collation. So the old name would be
        confusing about the return type.
      e7f635e2
    • Alexander Barkov's avatar
      Step#1 MDEV-27896 Wrong result upon `COLLATE latin1_bin CHARACTER SET latin1`... · 64a5fab0
      Alexander Barkov authored
      Step#1 MDEV-27896 Wrong result upon `COLLATE latin1_bin CHARACTER SET latin1` on the table or the database level
      
      - Adding data type aliases:
        using Lex_column_charset_collation_attrs_st = Lex_charset_collation_st;
        using Lex_column_charset_collation_attrs = Lex_charset_collation;
      
        and using them all around the code (except lex_charset.*)
        instead of the original names.
      
      - Renaming Lex_field_type_st::lex_charset_collation()
        to charset_collation_attrs()
      
      - Renaming Column_definition::set_lex_charset_collation()
        to set_charset_collation_attrs()
      
      - Renaming Column_definition::lex_charset_collation()
        to charset_collation_attrs()
      
      Rationale:
      
      The name "Lex_charset_collation" was a not very good name.
      It does not tell details about its properties:
      1. if the charset is optional (yes)
      2. if the collation is optional (yes)
      3. if the charset can be exact (yes) or context (no)
      4. if the collation can be: exact (yes) or context (yes)
      5. if the clauses can be repeated multiple times (yes)
      
      We'll need a few new data types soon with different properties.
      For example, to fix MDEV-27896 and MDEV-27782, we'll need a new
      data type which is very like Lex_charset_collation, but additionally
      supports CHARACTER SET DEFAULT (which is allowed on table and database level,
      but is not allowed on the column level yet), i.e. with:
        "the charset can be exact (yes) or context (yes)" in N3.
      
      So we'll have to rename Lex_charset_collation to something else,
      e.g.: Lex_exact_charset_extended_collation_attrs,
      and add a new data type:
      e.g. Lex_extended_charset_extended_collation_attrs
      
      Also, we'll possibly allow CHARACTER SET DEFAULT at the column level for
      consistency with other places. So the storge on the column level can change:
      - from Lex_exact_charset_extended_collation_attrs
      - to   Lex_extended_charset_extended_collation_attrs
      
      Adding the aliases introduces a convenient abstraction against
      upcoming renames and c++ data type changes.
      64a5fab0
    • Marko Mäkelä's avatar
      Merge 10.5 into 10.6 · e86c1e67
      Marko Mäkelä authored
      e86c1e67
    • Marko Mäkelä's avatar
      Merge 10.4 into 10.5 · a0f0687f
      Marko Mäkelä authored
      a0f0687f
    • Marko Mäkelä's avatar
      Merge 10.4 into 10.5 · 2f6a014f
      Marko Mäkelä authored
      2f6a014f