Skip to content

Commit efdf7e1

Browse files
author
Xing Zhang
committed
Bug #25562487: SOME TESTS IN MAIN SUITE FAIL WHEN CHANGING DEFAULT CHARSET
Post-fix patch: fix failing test main.join_nested. Change-Id: Ic0e577a86d368b5b85e08656d121abab236b2554
1 parent f9de14b commit efdf7e1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mysql-test/r/join_nested.result

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2316,7 +2316,7 @@ DROP TABLE t1,t2,t3;
23162316
CREATE TABLE t1 (
23172317
carrier char(2) default NULL,
23182318
id int NOT NULL auto_increment PRIMARY KEY
2319-
);
2319+
) CHARSET utf8mb4;
23202320
INSERT INTO t1 VALUES
23212321
('CO',235371754),('CO',235376554),('CO',235376884),('CO',235377874),
23222322
('CO',231060394),('CO',231059224),('CO',231059314),('CO',231060484),
@@ -2381,7 +2381,7 @@ CREATE TABLE t4 (
23812381
carrier char(2) NOT NULL default '' PRIMARY KEY,
23822382
id int(11) default NULL,
23832383
INDEX id(id)
2384-
);
2384+
) CHARSET utf8mb4;
23852385
INSERT INTO t4 VALUES
23862386
('99',6),('SK',456),('UA',486),('AI',1081),('OS',1111),('VS',1510);
23872387
CREATE TABLE t5 (
@@ -2412,7 +2412,7 @@ ON t4.carrier = t1.carrier;
24122412
id select_type table partitions type possible_keys key key_len ref rows filtered Extra
24132413
1 SIMPLE t2 NULL index package_id package_id 5 NULL 45 100.00 Using where; Using index
24142414
1 SIMPLE t1 NULL eq_ref PRIMARY PRIMARY 4 test.t2.package_id 1 100.00 NULL
2415-
1 SIMPLE t4 NULL eq_ref PRIMARY,id PRIMARY 2 test.t1.carrier 1 100.00 NULL
2415+
1 SIMPLE t4 NULL eq_ref PRIMARY,id PRIMARY 8 test.t1.carrier 1 100.00 NULL
24162416
1 SIMPLE t5 NULL ref carrier_id carrier_id 5 test.t4.id 22 100.00 Using index
24172417
1 SIMPLE t3 NULL ref package_id package_id 5 test.t2.package_id 1 100.00 Using index
24182418
Warnings:

0 commit comments

Comments
 (0)