We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 095c607 commit f646021Copy full SHA for f646021
localtests/utf8mb4/create.sql
@@ -0,0 +1,21 @@
1
+drop table if exists gh_ost_test;
2
+create table gh_ost_test (
3
+ id int auto_increment,
4
+ t varchar(128) charset utf8mb4,
5
+ primary key(id)
6
+) auto_increment=1;
7
+
8
+drop event if exists gh_ost_test;
9
+delimiter ;;
10
+create event gh_ost_test
11
+ on schedule every 1 second
12
+ starts current_timestamp
13
+ ends current_timestamp + interval 60 second
14
+ on completion not preserve
15
+ enable
16
+ do
17
+begin
18
+ insert into gh_ost_test values (null, md5(rand()));
19
+ insert into gh_ost_test values (null, 'átesting');
20
+ insert into gh_ost_test values (null, '🍻😀');
21
+end ;;
0 commit comments