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:
@ -103,7 +103,7 @@ o_custkey = c_custkey and
|
||||
c_nationkey = n_nationkey and
|
||||
n_name='PERU';
|
||||
id select_type table type possible_keys key key_len ref rows Extra
|
||||
1 SIMPLE nation ref PRIMARY,i_n_name i_n_name 26 const 1 Using where; Using index
|
||||
1 SIMPLE nation ref PRIMARY,i_n_name i_n_name 101 const 1 Using where; Using index
|
||||
1 SIMPLE customer ref PRIMARY,i_c_nationkey i_c_nationkey 5 dbt3_s001.nation.n_nationkey 6 Using index
|
||||
1 SIMPLE orders ref|filter i_o_orderdate,i_o_custkey i_o_custkey|i_o_orderdate 5|4 dbt3_s001.customer.c_custkey 15 (8%) Using where; Using rowid filter
|
||||
explain format=json
|
||||
@ -123,7 +123,7 @@ EXPLAIN
|
||||
"access_type": "ref",
|
||||
"possible_keys": ["PRIMARY", "i_n_name"],
|
||||
"key": "i_n_name",
|
||||
"key_length": "26",
|
||||
"key_length": "101",
|
||||
"used_key_parts": ["n_name"],
|
||||
"ref": ["const"],
|
||||
"loops": 1,
|
||||
@ -201,7 +201,7 @@ o_custkey = c_custkey and
|
||||
c_nationkey = n_nationkey and
|
||||
n_name='PERU';
|
||||
id select_type table type possible_keys key key_len ref rows Extra
|
||||
1 SIMPLE nation ref PRIMARY,i_n_name i_n_name 26 const 1 Using where; Using index
|
||||
1 SIMPLE nation ref PRIMARY,i_n_name i_n_name 101 const 1 Using where; Using index
|
||||
1 SIMPLE customer ref PRIMARY,i_c_nationkey i_c_nationkey 5 dbt3_s001.nation.n_nationkey 6 Using index
|
||||
1 SIMPLE orders ref|filter i_o_orderdate,i_o_custkey i_o_custkey|i_o_orderdate 5|4 dbt3_s001.customer.c_custkey 15 (8%) Using where; Using rowid filter
|
||||
explain format=json
|
||||
@ -221,7 +221,7 @@ EXPLAIN
|
||||
"access_type": "ref",
|
||||
"possible_keys": ["PRIMARY", "i_n_name"],
|
||||
"key": "i_n_name",
|
||||
"key_length": "26",
|
||||
"key_length": "101",
|
||||
"used_key_parts": ["n_name"],
|
||||
"ref": ["const"],
|
||||
"loops": 1,
|
||||
@ -352,7 +352,7 @@ o_custkey in (select c_custkey from customer
|
||||
where c_nationkey in (select n_nationkey from nation
|
||||
where n_name='PERU'));
|
||||
id select_type table type possible_keys key key_len ref rows Extra
|
||||
1 PRIMARY nation ref PRIMARY,i_n_name i_n_name 26 const 1 Using where; Using index
|
||||
1 PRIMARY nation ref PRIMARY,i_n_name i_n_name 101 const 1 Using where; Using index
|
||||
1 PRIMARY customer ref PRIMARY,i_c_nationkey i_c_nationkey 5 dbt3_s001.nation.n_nationkey 6 Using index
|
||||
1 PRIMARY orders ref|filter i_o_orderdate,i_o_custkey i_o_custkey|i_o_orderdate 5|4 dbt3_s001.customer.c_custkey 15 (8%) Using where; Using rowid filter
|
||||
explain format=json
|
||||
@ -372,7 +372,7 @@ EXPLAIN
|
||||
"access_type": "ref",
|
||||
"possible_keys": ["PRIMARY", "i_n_name"],
|
||||
"key": "i_n_name",
|
||||
"key_length": "26",
|
||||
"key_length": "101",
|
||||
"used_key_parts": ["n_name"],
|
||||
"ref": ["const"],
|
||||
"loops": 1,
|
||||
@ -450,7 +450,7 @@ o_custkey in (select c_custkey from customer
|
||||
where c_nationkey in (select n_nationkey from nation
|
||||
where n_name='PERU'));
|
||||
id select_type table type possible_keys key key_len ref rows Extra
|
||||
1 PRIMARY nation ref PRIMARY,i_n_name i_n_name 26 const 1 Using where; Using index
|
||||
1 PRIMARY nation ref PRIMARY,i_n_name i_n_name 101 const 1 Using where; Using index
|
||||
1 PRIMARY customer ref PRIMARY,i_c_nationkey i_c_nationkey 5 dbt3_s001.nation.n_nationkey 6 Using index
|
||||
1 PRIMARY orders ref|filter i_o_orderdate,i_o_custkey i_o_custkey|i_o_orderdate 5|4 dbt3_s001.customer.c_custkey 15 (8%) Using where; Using rowid filter
|
||||
explain format=json
|
||||
@ -470,7 +470,7 @@ EXPLAIN
|
||||
"access_type": "ref",
|
||||
"possible_keys": ["PRIMARY", "i_n_name"],
|
||||
"key": "i_n_name",
|
||||
"key_length": "26",
|
||||
"key_length": "101",
|
||||
"used_key_parts": ["n_name"],
|
||||
"ref": ["const"],
|
||||
"loops": 1,
|
||||
|
Reference in New Issue
Block a user