summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb/r/dropdb.result
blob: e612b02b4c8ccfbacad2f0b0f0cf8b6a39415fdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
SET NAMES utf8;
call mtr.add_suppression("Invalid .old.. table or database name");
#
# Bug #19929435 DROP DATABASE HANGS WITH MALFORMED TABLE
#
set session default_storage_engine=innodb;
create database `b`;
use `b`;
create table `#mysql50#q.q` select 1;
ERROR 42000: Incorrect table name '#mysql50#q.q'
create table `#mysql50#q·q` select 1;
drop database `b`;