Details
Description
Run test with view-protocol:
SET CHARACTER SET koi8r;
|
|
set names koi8r;
|
create table t1 (c1 char(10) character set cp1251);
|
insert into t1 values ('ß');
|
select c1 from t1 where c1 between 'ß' and 'ß';
|
drop table t1;
|
Error:
mysqltest: At line 6: query 'select c1 from t1 where c1 between 'ß' and 'ß'' failed: 1270: Illegal mix of collations (cp1251_general_ci,IMPLICIT), (latin1_swedish_ci,COERCIBLE), (latin1_swedish_ci,COERCIBLE) for operation 'between'
|
May be the same with MDEV-27904
Attachments
Issue Links
- is part of
-
MDEV-27691 make working view-protocol
-
- Closed
-
Activity
Field | Original Value | New Value |
---|---|---|
Link |
This issue relates to |
Link |
This issue is part of |
Link |
This issue relates to |
Labels | view-protocol |
Assignee | Lena Startseva [ JIRAUSER50478 ] | Oleksandr Byelkin [ sanja ] |
Assignee | Oleksandr Byelkin [ sanja ] | Alexander Barkov [ bar ] |
Assignee | Alexander Barkov [ bar ] | Oleksandr Byelkin [ sanja ] |
Component/s | Tests [ 10800 ] | |
Fix Version/s | 10.4.31 [ 29010 ] | |
Fix Version/s | 10.5.22 [ 29011 ] | |
Fix Version/s | 10.6.15 [ 29013 ] | |
Fix Version/s | 10.9.8 [ 29015 ] | |
Fix Version/s | 10.10.6 [ 29017 ] | |
Fix Version/s | 10.11.5 [ 29019 ] | |
Fix Version/s | 11.0.3 [ 28920 ] | |
Fix Version/s | 11.1.2 [ 28921 ] | |
Fix Version/s | 10.9 [ 26905 ] | |
Resolution | Fixed [ 1 ] | |
Status | Open [ 1 ] | Closed [ 6 ] |
Hello lstartseva,
I think this behavior is expected. With --view-protocol, VIEWs are created by a separate thread. Statements like SET NAMES do not affect this separate thread.
This cannot be fixed on the server side. This should be fixed in mysqltest, if it's possible at all.