summaryrefslogtreecommitdiff
path: root/mysql-test/mariadb-test-run.pl
Commit message (Collapse)AuthorAgeFilesLines
* MDEV-30205 Move /usr/share/mysql to /usr/share/mariadbDaniel Black2023-04-111-17/+24
| | | | | | | | | These are mainly internal files so is a low impact change. The few scripts/mysql*sql where renames to mariadb_* prefix on the name. mysql-test renamed to mariadb-test in the final packages
* Merge 10.11 into 11.0Marko Mäkelä2023-02-161-11/+7
|\
| * Merge 10.10 into 10.11Marko Mäkelä2023-02-161-13/+12
| |\
| | * MDEV-30186 Use of uninitialized value in substitutionAnel Husakovic2023-01-301-13/+12
| | | | | | | | | | | | Reviewer: <>
* | | Fixed 'undefined variable' error in mtrMonty2023-02-031-6/+9
| | | | | | | | | | | | This could happen if mtr_grab_file() returned empty (happened to me)
* | | Small improvements to aria recoveryMonty2023-02-031-0/+1
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I spent 4 hours on work and 12 hours of testing to try to find the reason for aria crashing in recovery when starting a new test, in which case the 'data directory' should be a copy of "install.db", but aria_log.00000001 content was not correct. The following changes are mostly done to make it a bit easier to find out more in case of future similar crashes: - Mark last_checkpoint_lsn volatile (safety). - Write checkpoint message to aria_recovery.trace - When compling with DBUG and with HAVE_DBUG_TRANSLOG_SRC, use checksum's for Aria log pages. We cannot have it on by default for DBUG servers yet as there is bugs when changing CRC between restarts. - Added a message to mtr --verbose when copying the data directory. - Removed extra linefeed in Aria recovery message (cleanup)
* | Merge 10.10 into 10.11Marko Mäkelä2023-01-111-3/+10
|\ \ | |/
| * Merge 10.5 into 10.6Marko Mäkelä2023-01-031-3/+10
| |
* | Merge 10.10 into 10.11Marko Mäkelä2022-12-141-0/+1
|\ \ | |/
| * Merge 10.5 into 10.6Marko Mäkelä2022-12-131-0/+1
| |
* | MDEV-26715 Windows/installer - allow passwordless login for rootVladislav Vaintroub2022-11-081-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | Allow passwordless login in addition to usual login with password, when creating 'root' user during install. The effect of that change is that "local administrators" group are allowed to connect as root user. This is done via gssapi authentication plugin. Clients that are not aware of gssapi client plugin, can still login with password credentials.
* | Merge branch '10.10' into 10.11Oleksandr Byelkin2022-11-021-22/+22
|\ \ | |/
| * Merge 10.5 into 10.6Marko Mäkelä2022-10-251-22/+22
| | | | | | | | | | | | To prevent ASAN heap-use-after-poison in the MDEV-16549 part of ./mtr --repeat=6 main.derived the initialization of Name_resolution_context was cleaned up.
* | Add magic database access to test and test_% and removing the scriptOleksandr Byelkin2022-11-021-3/+2
|/ | | | from mysql-test-run.
* Merge branch '10.5' into 10.6Oleksandr Byelkin2022-08-101-1/+1
|
* Merge 10.5 into 10.6Marko Mäkelä2022-07-271-44/+71
|
* Format properly mtr report for the test case that is not completedAnel Husakovic2022-07-021-2/+3
| | | | | - Fixes 29e8c154172bd6b9dccd9757fddace93be6ad194 (MDEV-25857) Review by: <@mariadb.com>
* Merge 10.5 into 10.6Marko Mäkelä2022-06-271-2/+6
|
* Merge 10.5 into 10.6Marko Mäkelä2022-04-211-1/+1
|
* Merge branch '10.5 into 10.6mariadb-10.6.7Sergei Golubchik2022-02-101-1/+1
|
* Merge branch '10.5' into 10.6Oleksandr Byelkin2022-02-031-1/+1
|
* Merge branch '10.5' into 10.6Sergei Golubchik2021-12-071-1/+1
|
* Merge 10.5 into 10.6Marko Mäkelä2021-11-291-1/+3
|
* Merge 10.5 into 10.6Marko Mäkelä2021-10-271-38/+38
|
* Merge 10.5 into 10.6Marko Mäkelä2021-10-181-0/+1
|
* Merge branch '10.5' into 10.6Oleksandr Byelkin2021-08-021-59/+54
|
* MDEV-26142: Fix failures of the tests main.features and ↵Dmitry Shulga2021-07-151-1/+1
| | | | | | | | | | | | | | | | | | | | sys_vars.stored_program_cache_func when they are run in PS mode These tests produced different results in case they were run with the option --ps-protocol. These tests produced different result sets since a value of Feature_subquery and handler_read_key status system variables are updated one time more for ps-protocol (the first time it is updated on Prepare phase and the second time on Execute phase of PS protocol) So different result sets are expected for both tests. To make tests successfully runnable both for case it is run with and without the option --ps-protocol the new protocol combination [ps, nm] and protocol specific result files have been added. Moreover, the perl script mysql-test/mariadb-test-run.pl has been updated to make the variable opt_ps_protocol visible outside perl file containing this variable.
* mtr: report full command line of mysqld that failed to startSergei Golubchik2021-07-041-1/+1
|
* MDEV-22010: use executables MariaDB named in scriptsRucha Deodhar2021-06-141-0/+5942
As a part of this MDEV following changes were made: 1) Mariadb named executables used instead of mysql named executables in scripts 2) renamed mysql-test-run and mysql-stress-test to mariadb-test-run and mariadb-stress-test and created a symlink.