1. 08 Mar, 2019 3 commits
    • Oleksandr Byelkin's avatar
      Fix of PS after merge from 10.2. · 6740b292
      Oleksandr Byelkin authored
      TVC uses derived as singlatable calls
      6740b292
    • Marko Mäkelä's avatar
      Give ASAN some more stack · 94eb56fb
      Marko Mäkelä authored
      When compiling CMAKE_BUILD_TYPE=Debug WITH_ASAN using clang-7 -O2
      the following tests could fail due to insufficient stack size:
      main.signal_demo3 sys_vars.max_sp_recursion_depth_func
      94eb56fb
    • Marko Mäkelä's avatar
      MDEV-13818: Revert an incorrect change · 136d21c8
      Marko Mäkelä authored
      In commit d30f17af the change of
      the loop iteration broke another error handling path that did
      "goto error_handling_drop_uncached". Cover this code path with
      fault injection, and revert to the correct iteration.
      
      There are two fault injection labels innodb_OOM_prepare_inplace_alter.
      Their order was swapped in MDEV-11369, so that the label that used
      to be covered in an ADD INDEX code path would become unreachable
      because the label that is executed for any ALTER TABLE was executed
      first. Let us introduce the label innodb_OOM_prepare_add_index
      for the more specific case.
      136d21c8
  2. 07 Mar, 2019 13 commits
  3. 06 Mar, 2019 15 commits
    • Alexander Barkov's avatar
      After-merge fix for MDEV-18333 Slow_queries count doesn't increase when... · f0cd7075
      Alexander Barkov authored
      After-merge fix for MDEV-18333 Slow_queries count doesn't increase when slow_query_log is turned off
      f0cd7075
    • Sergei Golubchik's avatar
      fix memory leaks in mysql_client_test · 57dd892c
      Sergei Golubchik authored
      This fixes main.mysql_client_test, main.mysql_client_test_comp,
      main.mysql_client_test_nonblock failures
      in ASAN_OPTIONS="abort_on_error=1" runs
      57dd892c
    • Sergei Golubchik's avatar
      MDEV-18376 Memory leak in main.mysqladmin · 2f742b57
      Sergei Golubchik authored
      don't initialize mysql structure before it actually becomes needed.
      
      This fixes main.mysqladmin failures
      in ASAN_OPTIONS="abort_on_error=1" runs
      2f742b57
    • Sergei Golubchik's avatar
      MDEV-13818 CREATE INDEX leaks memory if running out of undo log space · 65070bef
      Sergei Golubchik authored
      free already allocated indexes if row_merge_create_index() fails
      
      This fixes innodb.alter_crash failure
      in ASAN_OPTIONS="abort_on_error=1" runs
      65070bef
    • Sergei Golubchik's avatar
      mronga: fix a memory leak · 2b4027e6
      Sergei Golubchik authored
      use the correct delete operator
      
      This fixes mroonga/storage.column_generated_stored_add_column failures
      in ASAN_OPTIONS="abort_on_error=1" runs
      2b4027e6
    • Sergei Golubchik's avatar
      MDEV-18625 ASAN unknown-crash in my_copy_fix_mb /... · 5f105e75
      Sergei Golubchik authored
      MDEV-18625 ASAN unknown-crash in my_copy_fix_mb / ha_mroonga::storage_inplace_alter_table_add_column
      
      disable inplace alter for adding stored generated columns.
      
      This fixes mroonga/storage.column_generated_stored_add_column failures
      in ASAN_OPTIONS="abort_on_error=1" runs
      
      Also, add a test case that shows the bug without ASAN.
      5f105e75
    • Marko Mäkelä's avatar
      Merge 10.2 into 10.3 · 77103e98
      Marko Mäkelä authored
      77103e98
    • Sergei Golubchik's avatar
      ASAN loves stack, give it some · 84645366
      Sergei Golubchik authored
      fixes these test failures in ASAN builds (in 10.1 and 10.4):
      * main.signal_demo3
      * main.sp
      * sys_vars.max_sp_recursion_depth_func
      * mroonga/storage.foreign_key_delete_existent
      * mroonga/storage.foreign_key_delete_nonexistent
      * mroonga/storage.foreign_key_insert_existent
      * mroonga/storage.foreign_key_update_existent
      * mroonga/storage.foreign_key_update_nonexistent
      * mroonga/storage.function_command_auto-escape
      * mroonga/storage.function_command_select
      * mroonga/storage.variable_enable_operations_recording_insert
      84645366
    • Sergei Golubchik's avatar
      5ce6fb59
    • Marko Mäkelä's avatar
      Merge 10.1 into 10.2 · c155946c
      Marko Mäkelä authored
      c155946c
    • Alexander Barkov's avatar
      A cleanup for MDEV-18333 Slow_queries count doesn't increase when slow_query_log is turned off · 26f0d72a
      Alexander Barkov authored
      thd->lex->m_sql_cmd was not cleared between queries.
      log_slow_query() could crash (when running mtr --ps) because of this.
      26f0d72a
    • Marko Mäkelä's avatar
      MDEV-18637 Assertion `cache' failed in fts_init_recover_doc · 485dcb07
      Marko Mäkelä authored
      I know no test case for this bug in 10.1. So a test case will be
      committed separately in 10.2
      
      fts_reset_get_doc(): properly initialize fts_get_doc_t::cache
      485dcb07
    • Marko Mäkelä's avatar
      MDEV-18659: Revert a non-functional change · 4b5dc47f
      Marko Mäkelä authored
      fts_fetch_index_words(): Restore the initialization len=0.
      The test innodb_fts.create in 10.2 would end up in an infinite loop
      if this assignment is removed, because a following iteration of the
      while() loop would assign zip->zp->avail_in=len with the original value
      instead of the 0 that was reset in the previous iteration.
      4b5dc47f
    • Marko Mäkelä's avatar
      MDEV-18659: Fix string truncation/overflow in InnoDB and XtraDB · b7612116
      Marko Mäkelä authored
      Fix the warnings issued by GCC 8 -Wstringop-truncation
      and -Wstringop-overflow in InnoDB and XtraDB.
      
      This work is motivated by Jan Lindström. The patch mainly differs
      from his original one as follows:
      
      (1) We remove explicit initialization of stack-allocated string buffers.
      The minimum amount of initialization that is needed is a terminating
      NUL character.
      (2) GCC issues a warning for invoking strncpy(dest, src, sizeof dest)
      because if strlen(src) >= sizeof dest, there would be no terminating
      NUL byte in dest. We avoid this problem by invoking strncpy() with
      a limit that is 1 less than the buffer size, and by always writing
      NUL to the last byte of the buffer.
      (3) We replace strncpy() with memcpy() or strcpy() in those cases
      when the result is functionally equivalent.
      
      Note: fts_fetch_index_words() never deals with len==UNIV_SQL_NULL.
      This was enforced by an assertion that limits the maximum length
      to FTS_MAX_WORD_LEN. Also, the encoding that InnoDB uses for
      the compressed fulltext index is not byte-order agnostic, that is,
      InnoDB data files that use FULLTEXT INDEX are not portable between
      big-endian and little-endian systems.
      b7612116
    • Marko Mäkelä's avatar
      MDEV-18749: Uninitialized value upon ADD FULLTEXT INDEX · b21930fb
      Marko Mäkelä authored
      row_merge_create_fts_sort_index(): Initialize dict_col_t.
      
      This fixes an access to uninitialized dict_col_t::ind when a debug
      assertion in MariaDB 10.4 invokes is_dropped() in
      rec_get_converted_size_comp_prefix_low(). Older MariaDB versions
      seem to be unaffected by the uninitialized values, but it should
      not hurt to initialize everything.
      b21930fb
  4. 05 Mar, 2019 4 commits
  5. 04 Mar, 2019 5 commits