1. 26 Jan, 2022 3 commits
    • Andrei's avatar
      MDEV-19555 assert Diagnostics_area::sql_errno() in ha_rollback_trans · c9356223
      Andrei authored
      Fixed the assert to restore pre-refactoring condition for
      calling set_error() equivalent.
      c9356223
    • Marko Mäkelä's avatar
      MDEV-25440: Indexed CHAR columns are broken with NO_PAD collations · e9aac091
      Marko Mäkelä authored
      cmp_data(): Compare different-length CHAR fields with
      the new strnncollsp_nchars function that will pad spaces if needed.
      
      Any InnoDB ROW_FORMAT except the original one that was named
      ROW_FORMAT=REDUNDANT in MySQL 5.0.3 will internally store
      CHAR(n) columns as variable-length if the character encoding is
      variable length. Spaces may be trimmed from the end.
      For NOT NULL values, the minimum length is always n*mbminlen.
      In cmp_data() we only know the lengths in bytes and we cannot
      easily know the ROW_FORMAT.
      
      is_strnncoll_compatible(): Refactored from innobase_mysql_cmp().
      
      innobase_mysql_cmp(): Merged to cmp_whole_field().
      
      cmp_whole_field(): Invoke strnncollsp_nchars for the DATA_MYSQL
      (the CHAR type with any other collation than latin1_swedish_ci).
      
      Reviewed by: Alexander Barkov
      Tested by: Roel Roel Van de Paar
      e9aac091
    • Marko Mäkelä's avatar
      Cleanup: Simplify cmp_geometry_field() and cmp_whole_field() · 37144afb
      Marko Mäkelä authored
      Let us always compare DATA_GEOMETRY with cmp_geometry_field().
      37144afb
  2. 25 Jan, 2022 3 commits
    • Vladislav Vaintroub's avatar
      MDEV-27373 wolfSSL 5.1.1 · be1d9653
      Vladislav Vaintroub authored
      - compile wolfcrypt with kdf.c, to avoid undefined symbols in tls13.c
      - define WOLFSSL_HAVE_ERROR_QUEUE to avoid endless loop SSL_get_error
      - Do not use SSL_CTX_set_tmp_dh/get_dh2048, this would require additional
        compilation options in WolfSSL. Disable it for WolfSSL build, it works
        without it anyway.
      - fix "macro already defined" Windows warning.
      be1d9653
    • Oleksandr Byelkin's avatar
      WolfSSL v5.1.1 · 8db47403
      Oleksandr Byelkin authored
      8db47403
    • Jan Lindström's avatar
      Add have_debug.inc · 05717807
      Jan Lindström authored
      05717807
  3. 24 Jan, 2022 2 commits
  4. 21 Jan, 2022 1 commit
  5. 20 Jan, 2022 2 commits
  6. 19 Jan, 2022 3 commits
  7. 18 Jan, 2022 3 commits
  8. 17 Jan, 2022 2 commits
  9. 14 Jan, 2022 3 commits
    • Daniel Black's avatar
      MDEV-23326: mtr fix - slow on timezone intialisation · 5e04c08d
      Daniel Black authored
      Fix wsrep.mysql_tzinfo_to_sql_symlink_skip test result.
      5e04c08d
    • Nayuta Yanagisawa's avatar
    • Alexander Barkov's avatar
      MDEV-25659 trigger name is empty after upgrade to 10.4 · 2832b949
      Alexander Barkov authored
      Problem:
      
      At some point, we made stored rountines fail at CREATE time
      instead of execution time in case of this syntax:
      
         IF unknown_variable
           ...
         END IF
      
      As a result, a trigger created before this change and contained an unknown
      variable worked in a bad way after upgrade:
      - It was displayed with an empty trigger name by SHOW CREATE TRIGGER
      - It was displayed with an empty trigger name by INFORMATION_SCHEMA.TRIGGERS
      - An attempt to DROP this trigger returned errors - nothing happened.
      - DROP TABLE did not remove the .TRN file corresponding to this broken trigger.
      
      Underlying code observations:
      
      The old code assumed that the trigger name resides in the current lex:
      
        if(thd->lex->spname)
          m_trigger_name= &thd->lex->spname->m_name;
      
      This is not always the case. Some SP statements (e.g. IF)
      do the following in their beginning:
      
      - create a separate local LEX
      - set thd->lex to this new local LEX
      - push the new local LEX to the stack in sp_head::m_lex
      
      and the following at the end of the statement:
      
      - pop the previous LEX from the stack sp_head::m_lex
      - set thd->lex back to the popped value
      
      So when the parse error happens inside e.g. IF statement, thd->lex->spname
      is a NULL pointer, because thd->lex points to the local LEX (without SP name)
      rather than the top level LEX (with SP name).
      
      Fix:
      - Adding a new method sp_head::find_spname_recursive()
        which walks inside the LEX stack sp_head::m_lex from
        the top (the newest, most local) to the bottom (the oldest),
        and finds the one which contains a non-zero spname pointer.
      
      - Using the new method inside
        Deprecated_trigger_syntax_handler::handle_condition():
        First it still tests thd->lex->spname (like before this change),
        and uses it in case it is not empty.
        Otherwise (if thd->lex->spname is empty), it calls
        sp_head::find_spname_recursive() to find the LEX with a
        non-empty spname inside the LEX stack of the current sphead.
      2832b949
  10. 12 Jan, 2022 1 commit
  11. 11 Jan, 2022 2 commits
    • Daniel Black's avatar
      MDEV-23326: Aria significantly slow on timezone intialisation · 6b4f0d78
      Daniel Black authored
      The --skip-write-binary-log added to mysql_tzinfo_to_sql in
      MDEV-18778 was only effective if galera was enabled on the server.
      This is because it tied together three concepts under one option:
      1. binary logging
      2. wsrep replication, and
      3. using innodb as a transitional table type.
      
      Change 1: small change in help option to reflect this.
      
      To solve the performance problem with Aria tables, LOCK TABLES WRITE
      is used to eliminate the need to fdatasync until the UNLOCK TABLES.
      
      If galera isn't enabled, then we also want to use the LOCK TABLE WRITE
      mechanism.
      
      The START TRANSACTION added in MDEV-23440 needed to be moved to
      before LOCK TABLES otherwise it would cancel their effect.
      
      TRUNCATE TABLE statements also need to be before the LOCK TABLES.
      
      When changing back from InnoDB to Aria, include the ORDER BY that
      was originally there in 6aaccbcb and matching the final ALTER
      TABLE in the timezonedir branch.
      
      Running: mariadb-tzinfo-to-sql --skip-write-binlog /usr/share/zoneinfo
      now generates 16 Aria_transaction_log_syncs from 7053.
      6b4f0d78
    • Nayuta Yanagisawa's avatar
      MDEV-26345 SELECT MIN on Spider table returns more rows than expected · b9730226
      Nayuta Yanagisawa authored
      The Spider storage engine ignored the implicit grouping when
      aggregation was converted to constant by the query optimizer.
      As a result, the Spider SE returned rows more than expected.
      
      To fix the problem, we notify the Spider SE of the existence of
      the implicit grouping via Query::distinct.
      b9730226
  12. 10 Jan, 2022 3 commits
  13. 08 Jan, 2022 1 commit
  14. 07 Jan, 2022 1 commit
    • Igor Babaev's avatar
      MDEV-22846 Server crashes in handler_index_cond_check on SELECT · 8265d6d9
      Igor Babaev authored
      If the optimizer decides to rewrites a NOT IN predicand of the form
        outer_expr IN (SELECT inner_col FROM ... WHERE subquery_where)
      into the EXISTS subquery
        EXISTS (SELECT 1 FROM ... WHERE subquery_where AND
              (outer_expr=inner_col OR inner_col IS NULL))
      then the pushed equality predicate outer_expr=inner_col can be used for
      ref[or_null] access if inner_col is a reference to an indexed column.
      In this case if there is a selective range condition over this column then
      a Rowid filter may be employed coupled the with ref[or_null] access. The
      filter is 'pushed' into the engine and in InnoDB currently it cannot be
      used with index look-ups by primary key. The ref[or_null] access can be
      used only when outer_expr is not NULL. Otherwise the original predicand
      is evaluated to TRUE only if the result set returned by the query
       SELECT 1 FROM ... WHERE subquery_where
      is empty. When performing this evaluation the executor switches to the
      table scan by primary key. Before this patch the pushed filter still
      remained marked as active and the engine tried to apply the filter. This
      was incorrect and in InnoDB this attempt to use the filter led to an
      assertion failure.
      
      This patch fixes the problem by disabling usage of the filter when
      outer_expr is evaluated to NULL.
      8265d6d9
  15. 05 Jan, 2022 1 commit
    • Monty's avatar
      MDEV-14907 FEDERATEDX doesn't respect DISTINCT · c18896f9
      Monty authored
      Federated and Federatex cannot be used with ROR scans
      
      Federated::position() and Federatex::position() is storing in 'ref' a
      pointer into a local result set buffer. This means that one cannot
      compare 'ref' from different handler instances to see if they point to the
      same physical record.
      
      This bug caused federated.federatedx to return wrong results when the
      optimizer tried to use index_merge to resolve some queries.
      
      Fixed by introducing table flag HA_NON_COMPARABLE_ROWID and using this
      with the above handlers.
      
      Todo:
      - Fix multi_delete(), multi_update and read_records() to use primary key
        instead of 'ref' if case HA_NON_COMPARABLE_ROWID is set. The current
        code only works if we have only one range (like table scan) for the
        tables that will be updated in the second pass.
      - Enable DBUG_ASSERT() in ha_federated::cmp_ref() and
        ha_federatedx::cmp_ref().
      c18896f9
  16. 28 Dec, 2021 1 commit
  17. 27 Dec, 2021 1 commit
    • Nayuta Yanagisawa's avatar
      MDEV-27184 Assertion `(old_top == initial_top (av) && old_size == 0) ||... · 5045509b
      Nayuta Yanagisawa authored
      MDEV-27184 Assertion `(old_top == initial_top (av) && old_size == 0) || ((unsigned long) (old_size) >= MINSIZE && prev_inuse (old_top) && ((unsigned long) old_end & (pagesize - 1)) == 0)' failed, Assertion `str.alloced_length() >= str.length() + data_len' failed
      
      Spider crashes on a query that inserts some rows including float.
      This is because Spider allocates a string of insufficient length.
      5045509b
  18. 25 Dec, 2021 1 commit
  19. 24 Dec, 2021 1 commit
  20. 23 Dec, 2021 5 commits
    • Julius Goryavsky's avatar
      MDEV-24097: galera[_3nodes] suite tests in MTR sporadically fails · b5cbe506
      Julius Goryavsky authored
      This is the first part of the fixes for MDEV-24097. This commit
      contains the fixes for instability when testing Galera and when
      restarting nodes quickly:
      
      1) Protection against a "stuck" old SST process during the execution
         of the new SST (after restarting the node) is now implemented for
         mariabackup / xtrabackup, which should help to avoid almost all
         conflicts due to the use of the same ports - both during testing
         with mtr, so and when restarting nodes quickly in a production
         environment.
      2) Added more protection to scripts against unexpected return of
         the rc != 0 (in the commands for deleting temporary files, etc).
      3) Added protection against unexpected crashes during binlog transfer
         (in SST scripts for rsync).
      4) Spaces and some special characters in binlog filenames shouldn't
         be a problem now (at the script level).
      5) Daemon process termination tracking has been made more robust
         against crashes due to unexpected termination of the previous SST
         process while new scripts are running.
      6) Reading ssl encryption parameters has been moved from specific
         SST scripts to a common wsrep_sst_common.sh script, which allows
         unified error handling, unified diagnostics and simplifies script
         revisions in the future.
      7) Improved diagnostics of errors related to the use of openssl.
      8) Corrections have been made for xtrabackup-v2 (both in tests and in
         the script code) that restore the work of xtrabackup with updated
         versions of innodb.
      9) Fixed some tests for galera_3nodes, although the complete solution
         for the problem of starting three nodes at the same time on fast
         machines will be done in a separate commit.
      
      No additional tests are required as this commit fixes problems with
      existing tests.
      b5cbe506
    • Julius Goryavsky's avatar
      Merge branch 10.2 into 10.3 · 3376668c
      Julius Goryavsky authored
      3376668c
    • Sergei Petrunia's avatar
      Fix typos in optimizer trace output · 4b020bfd
      Sergei Petrunia authored
      4b020bfd
    • Sergei Petrunia's avatar
      MDEV-27238: Assertion `got_name == named_item_expected()' failed in Json_writer · 397f5cf7
      Sergei Petrunia authored
      make_join_select() calls const_cond->val_int(). There are edge cases
      where const_cond may have a not-yet optimized subquery.
      
      (The subquery will have used_tables() covered by join->const_tables. It
      will still have const_item()==false, so other parts of the optimizer
      will not try to evaluate it.  We should probably mark such subqueries
      as constant but that is outside the scope of this MDEV)
      397f5cf7
    • Leandro Pacheco's avatar
      result of wsrep logic in queue_for_group_commit was being ignored · 0165a063
      Leandro Pacheco authored
      This could cause out of order wsrep checkpoints due wsrep specific leader
      code not being executed in `MYSQL_BIN_LOG::write_transaction_to_binlog_events`.
      Move original result assignment to before wsrep logic to prevent that.
      Reviewed-by: default avatarJan Lindström <jan.lindstrom@mariadb.com>
      0165a063