Skip to content

Commit

Permalink
tests: tiny update
Browse files Browse the repository at this point in the history
  • Loading branch information
zimulala committed Sep 22, 2023
1 parent b4bffbb commit 5de7b17
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/integration_tests/new_ci_collation/data/test1.sql
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ CREATE TABLE tt1 (

CREATE TABLE tt2 (
a varchar(20) charset utf8mb4 collate utf8mb4_0900_ai_ci,
b int default 10
b int default 10, primary key(b)
);

CREATE TABLE tt3 (
Expand All @@ -74,8 +74,8 @@ CREATE TABLE tt4 (

insert into tt1 (a) values ('A'),(' A'),('A\t'),('b'),('bA'),('bac'),('ab'),('\U000FFFFE'),('Àoo'),('ß'),('æ'),('aeoo'), ('𝕒bc');
insert into tt1 (a) values ('😉');
insert into tt2 (a) values ('A'),(' A'),('A\t'),('b'),('bA'),('bac'),('ab'),('\U000FFFFE'),('À'),('ß'),('æ'),('ae'), ('𝕒bc');
insert into tt2 (a) values ('😉');
insert into tt2 (a, b) values ('A', 1),(' A', 2),('A\t', 3),('b', 4),('bA', 5),('bac', 6),('ab', 7),('\U000FFFFE', 8),('À', 9),('ß', 10),('æ', 11),('ae', 12), ('𝕒bc', 13);
insert into tt2 (a, b) values ('😉', 14);
insert into tt3 (a) values ('A'),('A '),('A '),(' A'),('A\t'),('A\t '),('\U000FFFFE'),('À'),('ß'),('æ'),('ae'), ('𝕒bc');
insert into tt3 (a) values ('a'),('a '),('a '),(' a'),('a\t'),('a\t '),('\U000FFFFE'),('À'),('ß'),('æ'),('ae'), ('𝕒bc');
insert into tt3 (a) values ('B'),('B '),('B '),(' B'),('B\t'),('B\t '),('\U000FFFFE'),('À'),('ß'),('æ'),('ae'), ('𝕒bc');
Expand Down

0 comments on commit 5de7b17

Please sign in to comment.