mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-11 13:40:07 +00:00
17 lines
335 B
SQL
17 lines
335 B
SQL
set names 'utf8';
|
|
drop database if exists issue_1225;
|
|
create database issue_1225;
|
|
use issue_1225;
|
|
create table t (
|
|
i int not null auto_increment primary key,
|
|
c char(16)
|
|
) charset=utf8;
|
|
create table a (
|
|
i int not null primary key,
|
|
c char(16)
|
|
) charset=utf8;
|
|
insert into t values
|
|
(1, "が"),
|
|
(2, "が"),
|
|
(3, "が");
|