1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

MDEV-19123 Change default charset from latin1 to utf8mb4

Changing the default server character set from latin1 to utf8mb4.
This commit is contained in:
Alexander Barkov
2024-05-28 09:08:51 +04:00
parent a2a5ba14a8
commit 36eba98817
1713 changed files with 31563 additions and 30549 deletions

View File

@ -334,7 +334,7 @@ drop table t_keyword;
#
# Test behaviour with a simple select.
#
create table t1 (id int, first_name varchar(100), last_name varchar(100), score double);
create table t1 (id int, first_name varchar(100), last_name varchar(100), score double) charset=latin1;
insert into t1 values
(1, 'Alice', 'Fowler', 5),
(2, 'John', 'Doe', 6),
@ -749,7 +749,7 @@ drop view v3;
#
# Test with ties when an index is used to provide the order by.
#
create table t1 (id int, first_name varchar(100), last_name varchar(100), score double);
create table t1 (id int, first_name varchar(100), last_name varchar(100), score double) charset=latin1;
create index t1_name on t1 (first_name, last_name);
insert into t1 values
(1, 'Alice', 'Fowler', 5),