summaryrefslogtreecommitdiff
path: root/mysql-test/include/explain_utils.inc
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'bb-10.5-all-builders' into bb-10.6-all-buildersLena Startseva2022-09-271-1/+2
|\
| * MDEV-27691: make working view-protocolLena Startseva2022-09-231-1/+2
| | | | | | | | | | | | | | | | Tests with checking metadata or that cannot be run with the view-protocol are excluded from --view-protocol. For tests that do not allow the use of an additional connection, the util connection is disabled with "--disable_service_connection". Also cases with bugs for --view-protocol are disabled.
* | MDEV-16708: fixed issue with handling of the directive ↵Dmitry Shulga2021-06-171-0/+4
|/ | | | --enable-prepared-warnings in mysqltest
* MDEV-3798: EXPLAIN UPDATE/DELETE:Sergey Petrunya2013-10-091-0/+161
Backport mysql-test/t/myisam_explain_non_select_all.test from mysql-5.6 - the .result file was modified because MariaDB choses different query plans in a number cases. Also, we don't have some of the "incorrect EXPLAIN output" bugs that they still have. The .test file and includes were taken verbatim with one exception: two tests were disabled with --disable parsing: 1. @@sql_safe_updates is not enforced EXPLAINs of multitable updates. In MariaDB, the execution itself will produce ER_UPDATE_WITHOUT_KEY_IN_SAFE_MODE, but EXPLAIN won't. 2. Their case #71 hits some old bug in MyISAM (See their comments in explain_non_select.inc for details).