summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fixesst-10.4-anel-mysql-secureinstallAnel Husakovic2021-07-073-68/+135
| | | | | | | | | | | | | | - Add mtr test case and remove errors for `stty` - Use interrupt function for unsuccessful read - Remove records of `test*` from `mysql.db` in order to create function `check_removed_test_db` - thanks daniel@mariadb.org - Remove not needed sentence - Adding check_removed_test_db - Adding check for hostname with quoted parameters - Add flag for failures - Allow passing parameters through command line interface - mtr result still has some files not removed - review Reviewed by: daniel@mariadb.org
* Try to run and save mysql_secure_installation mtr testAnel Husakovic2021-07-063-3/+78
| | | | | | | | | | | | | | | | | | | | | | | | | | | - Note: server was manually started and mtr test is invoked -> so this is fake test - It is left with bunch of files: ``` mysql-test/.my.cnf.22917 mysql-test/.my.cnf.23180 mysql-test/.my.cnf.23334 mysql-test/.my.cnf.23582 mysql-test/.my.cnf.32683 mysql-test/.my.cnf.47216 mysql-test/.my.cnf.81379 mysql-test/.my.output.23582 mysql-test/.my.output.32683 mysql-test/.my.output.47216 mysql-test/.my.output.81379 mysql-test/.mysql.22917 mysql-test/.mysql.23180 mysql-test/.mysql.23334 mysql-test/.mysql.23582 mysql-test/.mysql.32683 mysql-test/.mysql.47216 mysql-test/.mysql.81379 ``` which should be removed after proper fix
* fixDaniel Black2021-07-061-1/+1
|
* mtr: mysql_secure_install fix - conceptDaniel Black2021-07-062-0/+22
|
* MDEV-19316: mysql_secure_installation should offer to rename root userDaniel Black2021-07-061-0/+15
| | | | Based off @ManjotS's implementation in #1288
* fix password for unix socket authDaniel Black2021-07-061-6/+11
| | | | | | | | | | | | | | | | password set: CREATE USER `dan`@`localhost` IDENTIFIED VIA mysql_native_password USING '*E72B08C841E005B05BD564FA1C18CAFFB9FEF5FC' OR unix_socket password impossible: CREATE USER `dan`@`localhost` IDENTIFIED VIA mysql_native_password USING 'invalid' OR unix_socket no password: CREATE USER `dan`@`localhost` IDENTIFIED VIA mysql_native_password OR unix_socket fix
* remove remote users last (this might be our connection)Daniel Black2021-07-061-13/+13
|
* no need to reload privileges nowDaniel Black2021-07-061-33/+0
|
* "emptypass" multiple meanings - stick to unix_socket_authDaniel Black2021-07-061-26/+11
| | | | Don't set unix_socket auth on remote connection or if already set.
* comment fixDaniel Black2021-07-061-1/+5
|
* recreate configuration file + read user defination correctlyDaniel Black2021-07-061-4/+5
|
* mysql_secure_installation --host is connection property, no a user oneDaniel Black2021-07-061-6/+7
|
* fix: do not disable echo on read usernameDaniel Black2021-07-061-2/+0
|
* MDEV-10112: mysql_secure_installation should use GRANT, REVOKE, etc for ↵Daniel Black2021-07-061-10/+8
| | | | galera support (part 2)
* fix - indentingDaniel Black2021-07-061-4/+4
|
* MDEV-10112: mysql_secure_installation should use GRANT, REVOKE, etc for ↵Daniel Black2021-07-061-7/+49
| | | | galera support
* update copyrightDaniel Black2021-07-061-0/+1
|
* default to non setting $user@$host password if already protectedDaniel Black2021-07-061-3/+6
|
* Adjust working to current user (not always root)Daniel Black2021-07-061-3/+3
|
* MDEV-22486: mysql_secure_installation cannot work without root user in the ↵Anel Husakovic2021-07-061-100/+132
| | | | database
* MDEV-25978: minor post-merge fix for .result fileJulius Goryavsky2021-07-061-1/+0
|
* MDEV-25236 Online log apply fails for ROW_FORMAT=REDUNDANT tablesMarko Mäkelä2021-07-023-13/+81
| | | | | | | | | | | | | | | | | | | | | | | | | In other ROW_FORMAT than REDUNDANT, the InnoDB record header size calculation depends on dict_index_t::n_core_null_bytes. In ROW_FORMAT=REDUNDANT, the record header always is 6 bytes plus n_fields or 2*n_fields bytes, depending on the maximum record size. But, during online ALTER TABLE, the log records in the temporary file always use a format similar to ROW_FORMAT=DYNAMIC, even omitting the 5-byte fixed-length part of the header. While creating a temporary file record for a ROW_FORMAT=REDUNDANT table, InnoDB must refer to dict_index_t::n_nullable. The field dict_index_t::n_core_null_bytes is only valid for other than ROW_FORMAT=REDUNDANT tables. The bug does not affect MariaDB 10.3, because only commit 7a27db778e3e5a04271568a94c75157bb6fb48f1 (MDEV-15563) allowed an ALGORITHM=INSTANT change of a NOT NULL column to NULL in a ROW_FORMAT=REDUNDANT table. The fix was developed by Thirunarayanan Balathandayuthapani and tested by Matthias Leich. The test case was simplified by me.
* Merge 10.3 into 10.4Marko Mäkelä2021-07-022-1/+9
|\
| * Merge 10.2 into 10.3Marko Mäkelä2021-07-021-1/+1
| |\
| | * submodules.cmake: add missing --depth=1Eugene Kosov2021-07-021-1/+1
| | |
| * | Fixup 586870f9effa48831fda2590f2aee2b95b30be39Marko Mäkelä2021-07-021-0/+8
| | | | | | | | | | | | | | | One more result was affected by merging 768c51880a5aa6d25d4c0fe7de7a88561ff46422.
* | | Merge 10.3 into 10.4Marko Mäkelä2021-07-028-50/+117
|\ \ \ | |/ /
| * | Merge 10.2 into 10.3Marko Mäkelä2021-07-024-27/+81
| |\ \ | | |/
| | * MDEV-26077 Assertion err != DB_DUPLICATE_KEY or unexpected ER_TABLE_EXISTS_ERRORMarko Mäkelä2021-07-023-27/+80
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a backport of 161e4bfafd261aa5204827086637d4d7dcceb949. trans_rollback_to_savepoint(): Only release metadata locks (MDL) if the storage engines agree, after the changes were already rolled back. Ever since commit 3792693f311a90cf195ec6d2f9b3762255a249c7 and mysql/mysql-server@55ceedbc3feb911505dcba6cee8080d55ce86dda we used to cheat here and always release MDL if the binlog is disabled. MDL are supposed to prevent race conditions between DML and DDL also when no replication is in use. MDL are supposed to be a superset of InnoDB table locks: InnoDB table lock may only exist if the thread also holds MDL on the table name. In the included test case, ROLLBACK TO SAVEPOINT would wrongly release the MDL on both tables and let ALTER TABLE proceed, even though the DML transaction is actually holding locks on the table. Until commit 1bd681c8b3c5213ce1f7976940a7dc38b48a0d39 (MDEV-25506) in MariaDB 10.6, InnoDB would often work around the locking violation in a blatantly non-ACID way: If locks exist on a table that is being dropped (in this case, actually a partition of a table that is being rebuilt by ALTER TABLE), InnoDB could move the table (or partition) into a queue, to be dropped after the locks and references had been released. If the lock is not released and the original copy of the table not dropped quickly enough, a name conflict could occur on a subsequent ALTER TABLE. The scenario of commit 3792693f311a90cf195ec6d2f9b3762255a249c7 is unaffected by this fix, because mysqldump would use non-locking reads, and the transaction would not be holding any InnoDB locks during the execution of ROLLBACK TO SAVEPOINT. MVCC reads inside InnoDB are only covered by MDL and page latches, not by any table or record locks. FIXME: It would be nice if storage engines were specifically asked which MDL can be released, instead of only offering a choice between all or nothing. InnoDB should be able to release any locks for tables that are no longer in trx_t::mod_tables, except if another transaction had converted some implicit record locks to explicit ones, before the ROLLBACK TO SAVEPOINT had been completed. Reviewed by: Sergei Golubchik
| | * MDEV-25129 fixup: Adjust test resultMarko Mäkelä2021-07-021-0/+4
| | | | | | | | | | | | Fixup for commit 768c51880a5aa6d25d4c0fe7de7a88561ff46422
| * | MDEV-25971 Instant ADD COLUMN fails to issue truncation warningsThirunarayanan Balathandayuthapani2021-07-024-22/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | A table rebuild that would truncate the default value of a DATE column is expected to issue data truncation warnings. But, these warnings are not being issued if the ADD COLUMN is being executed with ALGORITHM=INSTANT. InnoDB sets the warning of the field while assigning the default value of the field during check_if_supported_inplace_alter().
* | | mtr: plugin.multiauth aix fixDaniel Black2021-07-022-0/+15
| | | | | | | | | | | | The error loading the client module is different
* | | Merge branch 10.3 into 10.4Daniel Black2021-07-023-1/+11
|\ \ \ | |/ /
| * | mtr: fix tests funcs_1.is_tables_is & sql_sequence.rebuildDaniel Black2021-07-022-0/+10
| | |
| * | Merge branch '10.2' into 10.3Daniel Black2021-07-021-1/+1
| |\ \ | | |/
| | * MDEV-25129 postfix for windowsDaniel Black2021-07-021-1/+1
| | | | | | | | | | | | | | | | | | | | | C:\projects\server\sql\sql_show.cc(7913): error C2220: warning treated as error - no 'object' file generated [C:\projects\server\win_build\sql\sql.vcxproj] C:\projects\server\sql\sql_show.cc(7913): warning C4267: 'initializing': conversion from 'size_t' to 'uint', possible loss of data [C:\projects\server\win_build\sql\sql.vcxproj] caused by 768c51880a5aa6d25d4c0fe7de7a88561ff46422
| * | mtr: aix - no pool of threadsDaniel Black2021-07-023-0/+6
| | |
| * | MDEV-25894: support AIX as a platform in mtrDaniel Black2021-07-024-2/+19
| | | | | | | | | | | | | | | Parital backport of 48938c57c7f75b2a7627212b01cd65cfd6830261 so platform dependent AIX tests can be done.
* | | mtr: aix - no pool of threadsDaniel Black2021-07-023-0/+6
| | |
* | | MDEV-25894: support AIX as a platform in mtrDaniel Black2021-07-024-2/+19
| | | | | | | | | | | | | | | Parital backport of 48938c57c7f75b2a7627212b01cd65cfd6830261 so platform dependent AIX tests can be done.
* | | MDEV-25969: Condition pushdown into derived table doesn't work if select ↵Sergei Petrunia2021-07-012-2/+74
| | | | | | | | | | | | | | | | | | list uses SP Post-merge fix in 10.4: add a testcase for pushdown into IN subquery
* | | Merge 10.3 -> 10.4Sergei Petrunia2021-06-3026-19/+741
|\ \ \ | |/ /
| * | Post-merge fix: update derived_cond_pushdown.resultSergei Petrunia2021-06-301-0/+1
| | |
| * | Merge 10.2->10.3Sergei Petrunia2021-06-3023-19/+736
| |\ \ | | |/
| | * MDEV-25969: Condition pushdown into derived table doesn't work if select ↵Sergei Petrunia2021-06-303-6/+289
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | list uses SP Consider a query of the form: select ... from (select item2 as COL1) as T where COL1=123 Condition pushdown into derived table will try to push "COL1=123" condition down into table T. The process of pushdown involves "substituting" the item, that is, replacing Item_field("T.COL1") with its "producing item" item2. In order to use item2, one needs to clone it (call Item::build_clone). If the item is not cloneable (e.g. Item_func_sp is not), the pushdown process will fail and nothing at all will be pushed. Fixed by introducing transform_condition_or_part() which will try to apply the transformation for as many parts of condition as possible. The parts of condition that couldn't be transformed are dropped.
| | * MDEV-25129 Add KEYWORDS view to the INFORMATION_SCHEMAxing-zhi, jiang2021-06-2912-11/+306
| | | | | | | | | | | | | | | | | | | | | Add KEYWORDS table and SQL_FUNCTIONS table to INFORMATION_SCHEMA. This commits needs some minor changes when propagated upwards (e.g. func_array in item_create.cc has a termination element that doesn't exist in later versions of MariaDB)
| | * MDEV-26040 os_file_set_size() may not work on O_DIRECT filesMarko Mäkelä2021-06-291-5/+33
| | | | | | | | | | | | | | | os_file_set_size(): Trim the current size down to the file system block size, to obey the constraints for unbuffered I/O.
| | * MDEV-25461 Assertion `je->state == JST_KEY' failed in ↵Alexey Botchkov2021-06-283-0/+23
| | | | | | | | | | | | | | | | | | Geometry::create_from_json. Handle invalid GEOJSON-s in Geometry::create_from_json().
| | * Adjusted test results after the fix for MDEV-20411 (2)Igor Babaev2021-06-261-4/+4
| | |
| | * Adjusted test results after the fix for MDEV-20411Igor Babaev2021-06-264-15/+14
| | |