summaryrefslogtreecommitdiff
path: root/mysql-test/main/drop_combinations.test
Commit message (Collapse)AuthorAgeFilesLines
* Fix drop_combinations for embeddedVicențiu Ciorbaru2020-06-151-0/+52
| | | | Make sure to replace the datadir absolute path.
* Make error messages from DROP TABLE and DROP TABLE IF EXISTS consistentMonty2020-06-141-12/+53
| | | | | | | | | | | | | - 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/+332
- 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.