Files
percona-toolkit/t/pt-online-schema-change/samples/bug-1336734.sql
2016-01-26 21:29:18 -03:00

12 lines
234 B
SQL

drop database if exists test;
create database test;
use test;
CREATE TABLE lp1336734 (
id int primary key,
name varchar(20) DEFAULT NULL
);
INSERT INTO lp1336734 VALUES (1, "curly"), (2, "larry") , (3, NULL), (4, "moe");