You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
408 B

  1. #
  2. # Bug#35220 ALTER TABLE too picky on reserved word "foreign"
  3. # http://bugs.mysql.com/35220
  4. #
  5. -- source include/have_innodb.inc
  6. SET storage_engine=InnoDB;
  7. # we care only that the following SQL commands do not produce errors
  8. -- disable_query_log
  9. -- disable_result_log
  10. CREATE TABLE bug35220 (foreign_col INT, dummy_cant_delete_all_columns INT);
  11. ALTER TABLE bug35220 DROP foreign_col;
  12. DROP TABLE bug35220;