1. 18 Oct, 2023 5 commits
  2. 17 Oct, 2023 7 commits
  3. 16 Oct, 2023 4 commits
    • Igor Babaev's avatar
      MDEV-32064 Crash when searching for the best split of derived table · b1c8ea83
      Igor Babaev authored
      This bug could affect queries with IN subqueries in WHERE clause and using
      derived tables to which split optimization potentially could be applied.
      
      When looking for the best split of a splittable derived table T any key
      access from a semi-join materialized table used for lookups S to table T
      must be excluded from consideration because in the current implementation
      of such tables as S the values from its records cannot be used to access
      other tables.
      
      Approved by Oleksandr Byelkin <sanja@mariadb.com>
      b1c8ea83
    • Sergei Petrunia's avatar
      Revert accidentally pushed: commit e8c9cdc2 · 0ca699bf
      Sergei Petrunia authored
      Author: Sergei Petrunia <sergey@mariadb.com>
      Date:   Wed Oct 11 19:02:25 2023 +0300
      
          MDEV-32301: Server crashes at Arg_comparator::compare_row
      
          In  Item_bool_rowready_func2::build_clone(): if we're setting
            clone->cmp.comparators=0
          also set
            const_item_cache=0
          as the Item is currently in a state where one cannot compute it.
      0ca699bf
    • Sergei Petrunia's avatar
      MDEV-32324: Server crashes inside filesort at my_decimal::to_binary · 208ed0d8
      Sergei Petrunia authored
      A subquery in form "(SELECT not_null_value LIMIT 1 OFFSET 1)" will
      produce no rows which will translate into scalar SQL NULL value.
      
      The code in Item_singlerow_subselect::fix_length_and_dec() failed to
      take the LIMIT/OFFSET clause into account and used to set
      item_subselect->maybe_null=0, despite that SQL NULL will be produced.
      
      If such subselect was used in ORDER BY, this would cause a crash in
      filesort() code when it would get a NULL value for a not-nullable item.
      
      also made subselect_engine::no_tables() const function.
      208ed0d8
    • Sergei Petrunia's avatar
      MDEV-32301: Server crashes at Arg_comparator::compare_row · e8c9cdc2
      Sergei Petrunia authored
      In  Item_bool_rowready_func2::build_clone(): if we're setting
        clone->cmp.comparators=0
      also set
        const_item_cache=0
      as the Item is currently in a state where one cannot compute it.
      e8c9cdc2
  4. 15 Oct, 2023 1 commit
    • Sergei Petrunia's avatar
      MDEV-32320: Server crashes at TABLE::add_tmp_key · c8866892
      Sergei Petrunia authored
      The code inside Item_subselect::fix_fields() could fail to check
      that left expression had an Item_row, like this:
      
        (('x', 1.0) ,1) IN (SELECT 'x', 1.23 FROM ... UNION ...)
      
      In order to hit the failure, the first SELECT of the subquery had
      to be a degenerate no-tables select. In this case, execution will
      not enter into Item_in_subselect::create_row_in_to_exists_cond()
      and will not check if left_expr is composed of scalars.
      
      But the subquery is a UNION so as a whole it is not degenerate.
      We try to create an expression cache for the subquery.
      We create a temp.table from left_expr columns. No field is created
      for the Item_row. Then, we crash when trying to add an index over a
      non-existent field.
      
      Fixed by moving the left_expr cardinality check to a point in
      check_and_do_in_subquery_rewrites() which gets executed for all
      cases.
      It's better to make the check early so we don't have to care about
      subquery rewrite code hitting Item_row in left_expr.
      c8866892
  5. 13 Oct, 2023 4 commits
  6. 12 Oct, 2023 4 commits
  7. 11 Oct, 2023 7 commits
    • Alexander Barkov's avatar
      MDEV-32249 strings/ctype-ucs2.c:2336: my_vsnprintf_utf32: Assertion `(n % 4)... · 6400b199
      Alexander Barkov authored
      MDEV-32249 strings/ctype-ucs2.c:2336: my_vsnprintf_utf32: Assertion `(n % 4) == 0' failed in my_vsnprintf_utf32 on INSERT
      
      The crash inside my_vsnprintf_utf32() happened correctly,
      because the caller methods:
        Field_string::sql_rpl_type()
        Field_varstring::sql_rpl_type()
      mis-used the charset library and sent pure ASCII data to the
      virtual function snprintf() of a utf32 CHARSET_INFO.
      
      It was wrong to use Field::charset() in sql_rpl_type().
      We're printing the metadata (the data type) here, not the column data.
      The string contraining the data type of a CHAR/VARCHAR column
      is a pure ASCII string.
      
      Fixing to use res->charset() to print, like all virtual implementations
      of sql_type() do.
      
      Review was done by Andrei Elkin.
      Thanks to Andrei for proposing MTR test improvents.
      6400b199
    • Marko Mäkelä's avatar
      MDEV-31890: Remove COMPILE_FLAGS · 3f1a2562
      Marko Mäkelä authored
      The cmake configuration step is single-threaded and already consuming
      too much time. We should not make it worse by adding invocations like
      MY_CHECK_CXX_COMPILER_FLAG().
      
      Let us prefer something that works on any supported version
      of GCC (4.8.5 or later) or clang, as well as recent versions
      of the Intel C compiler.
      
      This replaces commit 1fde7853
      3f1a2562
    • Sergei Golubchik's avatar
      MDEV-32024 disable failing test · 702dc2ec
      Sergei Golubchik authored
      702dc2ec
    • Sergei Golubchik's avatar
      MDEV-30658 fix failing test · 3e2b1295
      Sergei Golubchik authored
      followup for 96ae37ab
      3e2b1295
    • Sergei Golubchik's avatar
      fix groonga to compile with -Werror=enum-int-mismatch · 69089c71
      Sergei Golubchik authored
      gcc 13.2.1
      69089c71
    • Yuchen Pei's avatar
      MDEV-31996 Create connection on demand in spider_db_delete_all_rows · 2556fe1a
      Yuchen Pei authored
      When spider_db_delete_all_rows() is called, the supplied spider->conns
      may have already been freed. The existing mechanism has spider_trx own
      the connections in trx_conn_hash and it may free a conn during the
      cleanup after a query. When running a delete query and if the table is
      in the table cache, ha_spider::open() would not be called which would
      recreate the conn. So we recreate the conn when necessary during
      delete by calling spider_check_trx_and_get_conn().
      
      We also reduce code duplication as delete_all_rows() and truncate()
      has almost identical code, and there's no need to assign
      wide_handler->sql_command in these functions because it has already
      been correctly assigned.
      2556fe1a
    • Vladislav Vaintroub's avatar
  8. 10 Oct, 2023 3 commits
    • Vladislav Vaintroub's avatar
      MDEV-32387 Windows - mtr output on is messed up with large MTR_PARALLEL. · f197f9a5
      Vladislav Vaintroub authored
      Windows C runtime does not implement line buffering mode for stdio.
      
      This sometimes makes output from different tests interleaved in MTR
      MTR relies on this buffering (lines won't  output until "\n") to correctly
      work in parallel scenarios.
      
      Implement do-it-yourself line buffering on Windows, to workaround.
      f197f9a5
    • Vladislav Vaintroub's avatar
      MDEV-32387 Windows - mtr output on is messed up with large MTR_PARALLEL. · 19423636
      Vladislav Vaintroub authored
      Windows C runtime does not implement line buffering mode for stdio.
      
      This sometimes makes output from different tests interleaved in MTR
      MTR relies on this buffering (lines won't  output until "\n") to correctly
      workin parallel scenarios.
      
      Implement do-it-yourself line buffering on Windows, to workaround.
      19423636
    • Oleg Smirnov's avatar
      MDEV-30664 mysqldump output is truncated on Windows · cbe61bf8
      Oleg Smirnov authored
      Flush stdout on finalizing of mysqldump/mysqlbinlog output
      to avoid truncation.
      
      The same patch has been applied to the mysqltest.cc code with
        commit 34ff714b
        Author: Magnus Svensson <msvensson@mysql.com>
        Date:   Fri Nov 14 11:06:56 2008 +0100
          WL#4189 Make mysqltest flush log file at close if logfile is stdout
      
      but not to mysqldump.c/mysqlbinlog.cc
      cbe61bf8
  9. 09 Oct, 2023 1 commit
  10. 06 Oct, 2023 2 commits
  11. 05 Oct, 2023 2 commits
    • Vlad Lesin's avatar
      MDEV-30658 lock_row_lock_current_waits counter in... · 96ae37ab
      Vlad Lesin authored
      MDEV-30658 lock_row_lock_current_waits counter in information_schema.innodb_metrics may become negative
      
      MONITOR_OVLD_ROW_LOCK_CURRENT_WAIT monitor should has
      MONITOR_DISPLAY_CURRENT flag set in its definition, as it shows the
      current state and does not accumulate anything.
      
      Reviewed by: Marko Mäkelä
      96ae37ab
    • Sergei Petrunia's avatar
      MDEV-10683: main.order_by_optimizer_innodb fails in buildbot · 422774b4
      Sergei Petrunia authored
      Fix order_by_optimizer_innodb and order_by_innodb tests.
      
      The problem was that the query could be ran before InnoDB was
      ready to provide a realistic statistic for #records in the table.
      
      It provided a number that was too low, which caused the optimizer
      to decide that range access plan wasn't advantageous and discard it.
      422774b4