1. 15 Aug, 2022 3 commits
  2. 13 Aug, 2022 1 commit
    • qggcs's avatar
      MDEV-29264: JSON function overflow error based on LONGTEXT field · 82017511
      qggcs authored
      Analysis: The JSON functions(JSON_ARRAY[OBJECT|ARRAY_APPEND|ARRAY_INSERT|INSERT|SET|REPLACE]) result is truncated when the function is called based on LONGTEXT field. The overflow occurs when computing the result length due to the LONGTEXT max length is same as uint32 max length. It lead to wrong result length.
      Fix: Add static_cast<ulonglong> to avoid uint32 overflow and fix the arguments used.
      82017511
  3. 10 Aug, 2022 1 commit
    • Addison G's avatar
      MDEV-29222 - Fix mysqld_safe script · 5d3bbc6d
      Addison G authored
      The mysqld_safe script was using bad grep options.
      
      The line that was fixed was likely meant to be 2 separate grep commands,
      piped into each other, with each one removing any lines that matched.
      
      The `-E` option was unneeded, as the command is not using regex.
      5d3bbc6d
  4. 05 Aug, 2022 2 commits
    • Marko Mäkelä's avatar
      MDEV-13542 fixup: Improve a recovery error message · c9803504
      Marko Mäkelä authored
      A message used to say "failed to read or decrypt"
      but the "or decrypt" part was removed in
      commit 0b47c126
      without adjusting rarely needed error message suppressions in some
      encryption tests.
      
      Let us improve the error message so that it mentions the file name,
      and adjust all error message suppressions in tests.
      
      Thanks to Oleksandr Byelkin for noticing one test failure.
      c9803504
    • Oleksandr Byelkin's avatar
      fix tests · 5dc86050
      Oleksandr Byelkin authored
      5dc86050
  5. 04 Aug, 2022 10 commits
  6. 03 Aug, 2022 10 commits
  7. 02 Aug, 2022 13 commits