blob: 41d20eaefdba31a4b94dd7fdf53e209f533ab123 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#
# Test of mysqld crash with fully qualified column names
#
drop database if exists a;
create database a;
use a;
create table b (c int);
insert into a.b set a.b.c = '1';
drop database a;
|