Skip to content

Commit 736696f

Browse files
author
Shlomi Noach
authored
Merge branch 'master' into fix-inspector-column-types
2 parents ebba4f4 + 49270ee commit 736696f

2 files changed

Lines changed: 32 additions & 0 deletions

File tree

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
drop table if exists gh_ost_test;
2+
create table gh_ost_test (
3+
id int auto_increment,
4+
t varchar(128) charset utf8 collate utf8_general_ci,
5+
tl varchar(128) charset latin1 not null,
6+
ta varchar(128) charset ascii not null,
7+
primary key(id)
8+
) auto_increment=1;
9+
10+
insert into gh_ost_test values (null, 'átesting');
11+
12+
13+
insert into gh_ost_test values (null, 'Hello world, Καλημέρα κόσμε, コンニチハ', 'átesting0', 'initial');
14+
15+
drop event if exists gh_ost_test;
16+
delimiter ;;
17+
create event gh_ost_test
18+
on schedule every 1 second
19+
starts current_timestamp
20+
ends current_timestamp + interval 60 second
21+
on completion not preserve
22+
enable
23+
do
24+
begin
25+
insert into gh_ost_test values (null, md5(rand()), 'átesting-a', 'a');
26+
insert into gh_ost_test values (null, 'novo proprietário', 'átesting-b', 'b');
27+
insert into gh_ost_test values (null, '2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm', 'átesting-c', 'c');
28+
insert into gh_ost_test values (null, 'usuário', 'átesting-x', 'x');
29+
30+
delete from gh_ost_test where ta='x' order by id desc limit 1;
31+
end ;;
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
--alter='convert to character set utf8mb4'

0 commit comments

Comments
 (0)