summaryrefslogtreecommitdiff
path: root/mysql-test/main/drop_combinations.result
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit '10.4' into 10.5Oleksandr Byelkin2021-01-061-5/+12
|
* MDEV-11412 Ensure that table is truly dropped when using DROP TABLESergei Golubchik2020-07-041-4/+2
| | | | | | | don't do table discovery on DROP. DROP falls back to "force" approach when a table isn't found and will try to drop in all engines anyway. That is, trying to discover in all engines before the drop is redundant and may be expensive.
* Make error messages from DROP TABLE and DROP TABLE IF EXISTS consistentMonty2020-06-141-78/+186
| | | | | | | | | | | | | - IF EXISTS ends with a list of all not existing object, instead of a separate note for every not existing object - Produce a "Note" for all wrongly dropped objects (like trying to do DROP SEQUENCE for a normal table) - Do not write existing tables that could not be dropped to binlog Other things: MDEV-22820 Bogus "Unknown table" warnings produced upon attempt to drop parent table referenced by FK This was caused by an older version of this commit patch and later fixed
* Fixed error messages from DROP VIEW to align with DROP TABLEMonty2020-06-141-0/+765
- Produce a "Note" for all wrongly dropped objects (Like doing DROP VIEW on a table). - IF EXISTS ends with a list of all not existing objects, instead of a separate note for every not existing object. Other things: - Fixed bug where one could do CREATE TEMPORARY SEQUENCE multiple times and create multiple temporary sequences with the same name.