1. 03 Nov, 2022 6 commits
  2. 02 Nov, 2022 11 commits
  3. 01 Nov, 2022 13 commits
  4. 31 Oct, 2022 2 commits
  5. 29 Oct, 2022 4 commits
  6. 28 Oct, 2022 1 commit
    • Vlad Lesin's avatar
      MDEV-28709 unexpected X lock on Supremum in READ COMMITTED · 2f421688
      Vlad Lesin authored
      Post-push fix. The flag of transaction which indicates that it's necessary
      to forbid gap lock inheritance after XA PREPARE could be inverted if
      lock_release_on_prepare_try() is invoked several times. The fix is to
      toggle it on lock_release_on_prepare() exit.
      2f421688
  7. 27 Oct, 2022 3 commits
    • Sergei Golubchik's avatar
      Revert MDEV-25292 Atomic CREATE OR REPLACE TABLE · 2bd41fc5
      Sergei Golubchik authored
      Specifically:
      
      Revert "MDEV-29664 Assertion `!n_mysql_tables_in_use' failed in innobase_close_connection"
      This reverts commit ba875e93.
      
      Revert "MDEV-29620 Assertion `next_insert_id == 0' failed in handler::ha_external_lock"
      This reverts commit aa08a744.
      
      Revert "MDEV-29628 Memory leak after CREATE OR REPLACE with foreign key"
      This reverts commit c579d66b.
      
      Revert "MDEV-29609 create_not_windows test fails with different result"
      This reverts commit cb583b2f.
      
      Revert "MDEV-29544 SIGSEGV in HA_CREATE_INFO::finalize_locked_tables"
      This reverts commit dcd66c38.
      
      Revert "MDEV-28933 CREATE OR REPLACE fails to recreate same constraint name"
      This reverts commit cf6c5176.
      
      Revert "MDEV-28933 Moved RENAME_CONSTRAINT_IDS to include/sql_funcs.h"
      This reverts commit f1e1c133.
      
      Revert "MDEV-28956 Locking is broken if CREATE OR REPLACE fails under LOCK TABLES"
      This reverts commit a228ec80.
      
      Revert "MDEV-25292 gcol.gcol_bugfixes --ps fix"
      This reverts commit 24fff826.
      
      Revert "MDEV-25292 Disable atomic replace for slave-generated or-replace"
      This reverts commit 2af15914.
      
      Revert "MDEV-25292 backup_log improved"
      This reverts commit 34398a20.
      
      Revert "MDEV-25292 Atomic CREATE OR REPLACE TABLE"
      This reverts commit 93c8252f.
      
      Revert "MDEV-25292 Table_name class for (db, table_name, alias)"
      This reverts commit d145dda9.
      
      Revert "MDEV-25292 ha_table_exists() cleanup and improvement"
      This reverts commit 409b8a86.
      
      Revert "MDEV-25292 Cleanups"
      This reverts commit 595dad83.
      
      Revert "MDEV-25292 Refactoring: moved select_field_count into Alter_info."
      This reverts commit f02af1d2.
      2bd41fc5
    • Daniel Black's avatar
      d1526099
    • Paragoumba's avatar
      MDEV-24377: Accept comma separated addresses as --bind-address value (#2009) · ba16202e
      Paragoumba authored
      * MDEV-24377: Accept comma separated addresses as --bind-address value
      
      When bind address form the basis of wsrep based variables, the first
      address in the comma separated list is used.
      
      The test uses the IP address 192.168.0.1 as we need to include
      multiple address. This will include failures without the following
      commit.
      
      The tests for bind_multiple_address_resolution could return
      addresses that we cannot bind too. Windows and FreeBSD, and
      probably other OSs will terminate the service if addresses are
      unavailable.
      
      We use the WSAEADDRNOTAVAIL / POSIX EADDRNOTAVAIL codes to
      continue to bind to other interfaces. If at the end of the
      bind list, if no binds are successful, the we terminate
      but still leaving the error messages in the log.
      Co-authored-by: default avatarDaniel Black <daniel@mariadb.org>
      ba16202e