summaryrefslogtreecommitdiff
path: root/mysql-test/r/insert_set.result
blob: 438c2c95147344cad02debd8416b38fc1a09e9e4 (plain)
1
2
3
4
5
6
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;