File tree Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -10494,7 +10494,7 @@ DELETE FROM t1;
10494
10494
LOAD DATA INFILE '../../std_data/loaddata/mdev9824.txt' INTO TABLE t1 CHARACTER SET utf8 LINES TERMINATED BY 'ёё' IGNORE 1 LINES;
10495
10495
Warnings:
10496
10496
Warning 1638 Non-ASCII separator arguments are not fully supported
10497
- SELECT c1 FROM t1;
10497
+ SELECT c1 FROM t1 ORDER BY c1 ;
10498
10498
c1
10499
10499
b
10500
10500
c
Original file line number Diff line number Diff line change @@ -2323,16 +2323,16 @@ insert into t1 values (0xF0BFBFBF);
2323
2323
insert into t1 values (0xF08F8080);
2324
2324
Warnings:
2325
2325
Warning 1366 Incorrect string value: '\xF0\x8F\x80\x80' for column 'utf8mb4' at row 1
2326
- select hex(utf8mb4) from t1;
2326
+ select hex(utf8mb4) from t1 order by binary utf8mb4 ;
2327
2327
hex(utf8mb4)
2328
+ 3F
2328
2329
F0908080
2329
2330
F0BFBFBF
2330
- 3F
2331
2331
delete from t1;
2332
2332
Testing [F2..F3][80..BF][80..BF][80..BF]
2333
2333
insert into t1 values (0xF2808080);
2334
2334
insert into t1 values (0xF2BFBFBF);
2335
- select hex(utf8mb4) from t1;
2335
+ select hex(utf8mb4) from t1 order by binary utf8mb4 ;
2336
2336
hex(utf8mb4)
2337
2337
F2808080
2338
2338
F2BFBFBF
@@ -2343,11 +2343,11 @@ insert into t1 values (0xF48F8080);
2343
2343
insert into t1 values (0xF4908080);
2344
2344
Warnings:
2345
2345
Warning 1366 Incorrect string value: '\xF4\x90\x80\x80' for column 'utf8mb4' at row 1
2346
- select hex(utf8mb4) from t1;
2346
+ select hex(utf8mb4) from t1 order by binary utf8mb4 ;
2347
2347
hex(utf8mb4)
2348
+ 3F
2348
2349
F4808080
2349
2350
F48F8080
2350
- 3F
2351
2351
drop table t1;
2352
2352
#
2353
2353
# Check strnxfrm() with odd length
Original file line number Diff line number Diff line change @@ -2000,7 +2000,7 @@ LOAD DATA INFILE '../../std_data/loaddata/mdev9824.txt' INTO TABLE t1 CHARACTER
2000
2000
SELECT c1 FROM t1;
2001
2001
DELETE FROM t1;
2002
2002
LOAD DATA INFILE '../../std_data/loaddata/mdev9824.txt' INTO TABLE t1 CHARACTER SET utf8 LINES TERMINATED BY 'ёё' IGNORE 1 LINES;
2003
- SELECT c1 FROM t1;
2003
+ SELECT c1 FROM t1 ORDER BY c1 ;
2004
2004
DROP TABLE t1;
2005
2005
2006
2006
--echo #
Original file line number Diff line number Diff line change @@ -1491,20 +1491,20 @@ create table t1 (utf8mb4 char(1) character set utf8mb4);
1491
1491
insert into t1 values (0xF0908080);
1492
1492
insert into t1 values (0xF0BFBFBF);
1493
1493
insert into t1 values (0xF08F8080);
1494
- select hex(utf8mb4) from t1;
1494
+ select hex(utf8mb4) from t1 order by binary utf8mb4 ;
1495
1495
delete from t1;
1496
1496
1497
1497
--echo Testing [F2..F3][80..BF][80..BF][80..BF]
1498
1498
insert into t1 values (0xF2808080);
1499
1499
insert into t1 values (0xF2BFBFBF);
1500
- select hex(utf8mb4) from t1;
1500
+ select hex(utf8mb4) from t1 order by binary utf8mb4 ;
1501
1501
delete from t1;
1502
1502
1503
1503
--echo Testing [F4][80..8F][80..BF][80..BF]
1504
1504
insert into t1 values (0xF4808080);
1505
1505
insert into t1 values (0xF48F8080);
1506
1506
insert into t1 values (0xF4908080);
1507
- select hex(utf8mb4) from t1;
1507
+ select hex(utf8mb4) from t1 order by binary utf8mb4 ;
1508
1508
drop table t1;
1509
1509
1510
1510
You can’t perform that action at this time.
0 commit comments