- 02 Nov, 2022 1 commit
-
-
Oleksandr Byelkin authored
-
- 01 Nov, 2022 12 commits
-
-
Oleksandr Byelkin authored
from mysql-test-run.
-
Sergei Golubchik authored
it's now redundant
-
Sergei Golubchik authored
-
Sergei Golubchik authored
print PUBLIC not quoted in SHOW GRANTS, PUBLIC is not a role
-
Sergei Golubchik authored
-
Sergei Golubchik authored
* "public" should work in any letter case * PUBLIC is not a valid definer * granting to public should auto-create an entry in mysql.global_priv * SHOW GRANTS should show privileges obtained via PUBLIC * LEX_USER::is_public was often uninitialized * comments, whitespaces, typos, etc
-
Oleksandr Byelkin authored
-
Oleksandr Byelkin authored
-
Oleksandr Byelkin authored
MDEV-5215 prerequisite of prerequisite: if DB is not mentioned in connect ignore errors of switching to it
-
Oleksandr Byelkin authored
-
Oleksandr Byelkin authored
-
Marko Mäkelä authored
-
- 31 Oct, 2022 2 commits
-
-
Oleksandr Byelkin authored
-
Nayuta Yanagisawa authored
Revert "MDEV-27233 Server hangs when using --init-file which loads Spider and creates a Spider table" This reverts commit c160a115.
-
- 29 Oct, 2022 4 commits
-
-
Oleksandr Byelkin authored
-
Sergei Golubchik authored
also call top_level_transform() recursively for (a OR b) AND (c OR d)
-
Sergei Golubchik authored
-
Sergei Golubchik authored
it's incorrect to use change_item_tree() to replace arguments of top-level AND/OR, because they (arguments) are stored in a List, so a pointer to an argument is in the list_node, and individual list_node's of top-level AND/OR can be deleted in Item_cond::build_equal_items(). In that case rollback_item_tree_changes() will modify the deleted object. Luckily, it's not needed to use change_item_tree() for top-level AND/OR, because the whole top-level item is copied and preserved in prep_where and prep_on, and restored from there. So, just don't.
-
- 28 Oct, 2022 1 commit
-
-
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.
-
- 27 Oct, 2022 3 commits
-
-
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.
-
Daniel Black authored
-
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:
Daniel Black <daniel@mariadb.org>
-
- 26 Oct, 2022 17 commits
-
-
Otto Kekäläinen authored
Replace mysql-log-rotate.sh and debian/...mysql-server.logrotate with one new unified and well documented version. Name is mariadb.logrotate.in as in 10.11 branch onward we use now the 'mariadb' name, and use 'logrotate' to match the actual name of the utility. Also automatically disable deprecated /etc/logrotate.d/mysql-server file on deb upgrades. Reviewer: Daniel Black Reviewer edits made: * Added 'su mysql mysql' to the logrotate this is more RPM friendly. This is commented on Debian * /var/log/mysql is the path on SuSe based distributions
-
Sergei Golubchik authored
-
Sergei Golubchik authored
don't set VERS_ROW_START or VERS_ROW_END flags on fields of a temporary table (as not versioned tables should not have ROW START/ROW END fields)
-
Sergei Golubchik authored
remove assert temporarily, the proper fix comes after MDEV-29833
-
Sergei Golubchik authored
MDEV-29736 mysqldump sets system_versioning_insert_history=1 twice and doesn't restore previous value
-
Sergei Golubchik authored
-
Sergei Golubchik authored
-
Sergei Golubchik authored
-
Sergei Golubchik authored
remove extra loop over result set, don't check for INVISIBLE columns, when not needed (xml ignores complete_insert and old servers cannot have INVISIBLE)
-
Sergei Golubchik authored
note that replace no longer supports system_versioning_insert_history, the test case is only for ignore
-
Sergei Golubchik authored
they'll ignore the value of system_versioning_insert_history, just as DELETE and UPDATE do
-
Sergei Golubchik authored
-
Sergei Golubchik authored
-
Sergei Golubchik authored
MDEV-29805 Attempt to insert into system versioning columns on old server may make slave data diverge
-
Sergei Golubchik authored
MDEV-29732 mysqlbinlog produces syntactically incorrect output with system_versioning_insert_history
-
Sergei Golubchik authored
-
Sergei Golubchik authored
-