From 5d4d1cd31bd8a09760e6972311fec987f58a3c56 Mon Sep 17 00:00:00 2001 From: Shlomi Noach Date: Tue, 20 Nov 2018 19:37:51 +0200 Subject: [PATCH] more interesting sample data --- localtests/convert-utf8mb4/create.sql | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/localtests/convert-utf8mb4/create.sql b/localtests/convert-utf8mb4/create.sql index cf36d5f..083174a 100644 --- a/localtests/convert-utf8mb4/create.sql +++ b/localtests/convert-utf8mb4/create.sql @@ -6,6 +6,8 @@ create table gh_ost_test ( primary key(id) ) auto_increment=1; +insert into gh_ost_test values (null, 'Hello world, Καλημέρα κόσμε, コンニチハ', 'initial'); + drop event if exists gh_ost_test; delimiter ;; create event gh_ost_test @@ -18,7 +20,7 @@ create event gh_ost_test begin insert into gh_ost_test values (null, md5(rand()), 'a'); insert into gh_ost_test values (null, 'novo proprietário', 'b'); - insert into gh_ost_test values (null, 'usuário', 'c'); + insert into gh_ost_test values (null, '2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm', 'c'); insert into gh_ost_test values (null, 'usuário', 'x'); delete from gh_ost_test where ta='x' order by id desc limit 1;