1. 28 Nov, 2022 1 commit
  2. 27 Nov, 2022 1 commit
  3. 24 Nov, 2022 1 commit
    • Nayuta Yanagisawa's avatar
      MDEV-29855 Crash with SPIDER_DIRECT_SQL and spider_udf_ds_use_real_table=1 · 162c1505
      Nayuta Yanagisawa authored
      The crash occurs because of the following call of TABLE_LIST::init_one_table():
      
        table_list.init_one_table(
          &table_list.db, &table_list.table_name, 0, TL_WRITE);
      
      One should not pass table_list.db and table_list.table_name to the function
      because it update the very members internally.
      
      The function is called previously, and there is no need to call it again.
      So, simply removing the call will resolve the problem.
      162c1505
  4. 23 Nov, 2022 1 commit
  5. 22 Nov, 2022 2 commits
    • Julius Goryavsky's avatar
      MDEV-29817: Issues with handling options for SSL CRLs (and some others) · f0820400
      Julius Goryavsky authored
      This patch adds the correct setting of the "--ssl-verify-server-cert"
      option in the client-side utilities such as mysqlcheck and mysqlslap,
      as well as the correct setting of the "--ssl-crl" option when executing
      queries on the slave side, and also add the correct option codes in
      the "sslopts-logopts.h" file (in the latter case, incorrect values
      are not a problem right now, but may cause subtle test failures in
      the future, if the option handling code changes).
      f0820400
    • Thirunarayanan Balathandayuthapani's avatar
      MDEV-28462 Race condition between instant alter and AHI access · 71c93fb8
      Thirunarayanan Balathandayuthapani authored
      - InnoDB AHI tries to access the concurrent instant alter column,
      leads to asan failure. Instant alter column should acquire the
      clustered index search latch in exclusive mode before changing
      the table cache definition.
      
      - Removed the default parameter for the function
      btr_search_drop_page_hash_index()
      
      - Addressed the DWITH_INNODB_AHI=0 compilation failure
      by passing two parameters from all callers of
      btr_search_drop_page_hash_index()
      71c93fb8
  6. 18 Nov, 2022 1 commit
    • Daniel Black's avatar
      MDEV-12274: Too many connections warning in error log (#2213) · f4a1298f
      Daniel Black authored
      Because of the default warning level, aborted unauthenticated
      connections are in the error log. These errors frequently occur
      in production environments because cancelled connectiosn occur
      all the time when web pages are shutdown.
      
      Rather than flood our user's errors log with these ordinary
      messages, lets push them down to the warning level at log-warnings=4
      level.
      
      Concept approved by Monty.
      f4a1298f
  7. 17 Nov, 2022 1 commit
    • Alexander Barkov's avatar
      MDEV-29473 UBSAN: Signed integer overflow: X * Y cannot be represented in type... · 6216a2df
      Alexander Barkov authored
      MDEV-29473 UBSAN: Signed integer overflow: X * Y cannot be represented in type 'int' in strings/dtoa.c
      
      Fixing a few problems relealed by UBSAN in type_float.test
      
      - multiplication overflow in dtoa.c
      
      - uninitialized Field::geom_type (and Field::srid as well)
      
      - Wrong call-back function types used in combination with SHOW_FUNC.
        Changes in the mysql_show_var_func data type definition were not
        properly addressed all around the code by the following commits:
          b4ff6456
          18feb62f
          0ee879ff
      
        Adding a helper SHOW_FUNC_ENTRY() function and replacing
        all mysql_show_var_func declarations using SHOW_FUNC
        to SHOW_FUNC_ENTRY, to catch mysql_show_var_func in the future
        at compilation time.
      6216a2df
  8. 15 Nov, 2022 1 commit
  9. 14 Nov, 2022 1 commit
    • Marko Mäkelä's avatar
      Clean up file load.in in a test · 1895c769
      Marko Mäkelä authored
      This fixes the following test invocation:
      ./mtr --no-reorder parts.partition_special_myisam parts.partition_debug
      
      This was broken ever since afd4b25d
      a.k.a. mysql/mysql-server@bde21e58108a1f311d15088c50414bb43ab45d62
      1895c769
  10. 11 Nov, 2022 1 commit
  11. 10 Nov, 2022 1 commit
    • Daniel Black's avatar
      MDEV-27882 Innodb - recognise MySQL-8.0 innodb flags and give a specific error message · dc6a0171
      Daniel Black authored
      Per fsp0types.h, SDI is on tablespace flags position 14 where MariaDB
      stores its pagesize. Flag at position 13, also in MariaDB pagesize
      flags, is a MySQL encryption flag.
      
      These are checked only if fsp_flags_is_valid fails, so valid MariaDB
      pages sizes don't become errors.
      
      The error message "Cannot reset LSNs in table" was rather specific and
      not always true to replaced with more generic error.
      
      ALTER TABLE tbl IMPORT TABLESPACE now reports Unsupported on MySQL
      tablespace (rather than index corrupted) along with a server error
      message.
      
      MySQL innodb Errors are with with UNSUPPORTED rather than CORRUPTED
      to avoid user anxiety.
      
      Reviewer: Marko Mäkelä
      dc6a0171
  12. 09 Nov, 2022 3 commits
    • Vlad Lesin's avatar
      MDEV-10087 mysqld_update()/mysql_delete() continues execution even after... · 0235a528
      Vlad Lesin authored
      MDEV-10087 mysqld_update()/mysql_delete() continues execution even after subquery with JOIN gets error from storage engine
      
      The issue is that record_should_be_deleted() returns true in
      mysql_delete() even if sub-select with join gets error from storage
      engine when DELETE FROM ... WHERE ... IN (SELECT ...) statement is
      executed.
      
      The same is true for mysql_update() where select->skip_record() returns
      true even if sub-select with join gets error from storage engine.
      
      In the test case if sub-select is chosen as deadlock victim the whole
      transaction is rolled back during sub-select execution, but
      mysql_delete()/mysql_update() continues transaction execution and invokes
      table->delete_row() as record_should_be_deleted() wrongly returns true
      in mysql_delete() and table->update_row() as select->skip_record(thd)
      wrongly returns 1 for mysql_update().
      
      record_should_be_deleted() wrogly returns true because thd->is_error()
      returns false SQL_SELECT::skip_record() invoked from
      record_should_be_deleted().
      
      It's supposed that THD error should be set in rr_handle_error() called
      from rr_sequential() during sub-select JOIN::exec_inner() execution.
      
      But rr_handle_error() does not set THD error because
      READ_RECORD::print_error is not set in JOIN_TAB::read_record.
      
      READ_RECORD::print_error should be initialized in
      init_read_record()/init_read_record_idx(). But make_join_readinfo() does
      not invoke init_read_record()/init_read_record_idx() for
      JOIN_TAB::read_record.
      
      The fix is to set JOIN_TAB::read_record.print_error in
      make_join_readinfo(), i.e. in the same place where
      JOIN_TAB::read_record.table is set.
      
      Reviewed by Sergey Petrunya.
      0235a528
    • asklavou's avatar
    • Marko Mäkelä's avatar
      MDEV-29883 Deadlock between InnoDB statistics update and BLOB insert · 6b91792a
      Marko Mäkelä authored
      This is a backport of commit 8b6a308e
      from MariaDB Server 10.6.11. No attempt to reproduce the hang
      in earlier an earlier version of MariaDB Server than 10.6 was made.
      
      In each caller of fseg_n_reserved_pages() except ibuf_init_at_db_start()
      which is a special case for ibuf.index at database startup, we must hold
      an index latch that prevents concurrent allocation or freeing of index
      pages.
      
      Any operation that allocates or free pages that belong to an index tree
      must first acquire an index latch in non-shared mode, and while
      holding that, acquire an index root page latch in non-shared mode.
      
      btr_get_size(), btr_get_size_and_reserved(): Assert that a strong enough
      index latch is being held.
      
      dict_stats_update_transient_for_index(),
      dict_stats_analyze_index(): Acquire a strong enough index latch.
      
      These operations had followed the same order of acquiring latches in
      every InnoDB version since the very beginning
      (commit c533308a).
      
      The hang was introduced in
      commit 2e814d47 which imported
      mysql/mysql-server@ac74632293bea967b352d1b472abedeeaa921b98
      which failed to strengthen the locking requirements of the function
      btr_get_size().
      6b91792a
  13. 08 Nov, 2022 9 commits
  14. 07 Nov, 2022 3 commits
  15. 05 Nov, 2022 1 commit
    • Vladislav Vaintroub's avatar
      MDEV-29951 server hang in crash handler · 92be8d20
      Vladislav Vaintroub authored
      When trying to output stacktrace, and addr2line is not installed, the
      child process forked by start_addr2line_fork() will fail to do exec(),
      and finish with exit(1).
      
      There is a problem with exit() though - it runs exit handlers,
      and for the forked copy of crashing process, it is a bad idea.
      
      In 10.5+ code for example, exit handlers include
      tpool::task_group static destructors, and it will hang infinitely
      waiting for completion of the outstanding tasks.
      
      The fix is to use _exit() instead, which skips the execution of exit
      handlers
      92be8d20
  16. 03 Nov, 2022 1 commit
  17. 02 Nov, 2022 1 commit
  18. 30 Oct, 2022 1 commit
    • Brad Smith's avatar
      Fix warning with signal typedef for *BSD · 7d96cb47
      Brad Smith authored
      /usr/ports/pobj/mariadb-10.9.3/mariadb-10.9.3/mysys/my_lock.c:183:7: warning: incompatible function pointer types assigning to 'sig_return' (aka 'void (*)(void)') from 'void (*)(int)' [-Wincompatible-function-pointer-types]
            ALARM_INIT;
            ^~~~~~~~~~
      /usr/ports/pobj/mariadb-10.9.3/mariadb-10.9.3/include/my_alarm.h:43:16: note: expanded from macro 'ALARM_INIT'
                              alarm_signal=signal(SIGALRM,my_set_alarm_variable);
                                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      /usr/ports/pobj/mariadb-10.9.3/mariadb-10.9.3/mysys/my_lock.c:189:7: warning: incompatible function pointer types passing 'sig_return' (aka 'void (*)(void)') to parameter of type 'void (*)(int)' [-Wincompatible-function-pointer-types]
            ALARM_END;
            ^~~~~~~~~
      /usr/ports/pobj/mariadb-10.9.3/mariadb-10.9.3/include/my_alarm.h:44:41: note: expanded from macro 'ALARM_END'
                                                    ^~~~~~~~~~~~
      /usr/include/sys/signal.h:199:27: note: passing argument to parameter here
      void    (*signal(int, void (*)(int)))(int);
                                   ^
      2 warnings generated.
      
      The prototype is the same for all of the *BSD's.
      
      void
      (*signal(int sigcatch, void (*func)(int sigraised)))(int);
      7d96cb47
  19. 28 Oct, 2022 1 commit
  20. 27 Oct, 2022 1 commit
  21. 26 Oct, 2022 3 commits
  22. 25 Oct, 2022 4 commits
    • Alexey Botchkov's avatar
      MDEV-26161 crash in Gis_point::calculate_haversine · 77951dd7
      Alexey Botchkov authored
      More checks for bad geometry data added.
      77951dd7
    • Sergei Golubchik's avatar
      MDEV-26161 crash in Gis_point::calculate_haversine · e910dff8
      Sergei Golubchik authored
      return an error on invalid gis data
      e910dff8
    • Sergei Golubchik's avatar
      cleanup: put casts in a separate statement · 72e79eaa
      Sergei Golubchik authored
      remove useless if()
      72e79eaa
    • Lawrin Novitsky's avatar
      MDEV-29490 Renaming internally used client API to avoid name conflicts · 1ff476b4
      Lawrin Novitsky authored
      with C/C.
      The patch introduces mariadb_capi_rename.h which is included into
      mysql.h. The hew header contains macro definitions for the names being
      renamed. In versions 10.6+(i.e. where sql service exists) the renaming
      condition in the mariadb_capi_rename.h should be added with
      && !defined(MYSQL_DYNAMIC_PLUGIN)
      and look like
      The patch also contains removal of mysql.h from the api check.
      
      Disabling false_duper-6543 test for embedded.
      
      ha_federated.so uses C API. C API functions are being renamed in the server,
      but not renamed in embedded, since embedded server library should have proper
      C API, as expected by programs using it.
      Thus the same ha_federated.so cannot work both for server and embedded
      server library.
      
      As all federated tests are already disabled for embedded,
      federated isn't supposed to work for embedded anyway, and thus the test
      is being disabled.
      1ff476b4