~percona-toolkit-dev/percona-toolkit/fix-pt-heartbeat-docs-bug-1137556

« back to all changes in this revision

Viewing changes to t/pt-online-schema-change/samples/utf8_charset_tbl.sql

Merge fix-pt-osc-tbl-charset-bug-1171653.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
drop database if exists test1171653;
 
2
create database test1171653;
 
3
use test1171653;
 
4
 
 
5
CREATE TABLE `t` (
 
6
  `id` int(11) NOT NULL AUTO_INCREMENT,
 
7
  `foo` varchar(30) NOT NULL,
 
8
  PRIMARY KEY (`id`)
 
9
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
 
10
 
 
11
INSERT INTO `t` VALUES (1,'bar'), (2,'bar2'), (3,'bar3');