Details
-
Bug
-
Status: Open (View Workflow)
-
Major
-
Resolution: Unresolved
-
10.3(EOL), 10.4(EOL), 10.5, 10.6, 10.7(EOL), 10.8(EOL), 10.9(EOL)
-
None
Description
Expected that "select from table" and "select from view" give the same result:
Test:
select convert(convert(',' using filename) using binary); |
create view vv as select convert(convert(',' using filename) using binary); |
select * from vv; |
drop view vv; |
Actual result:
select convert(convert(',' using filename) using binary); |
convert(convert(',' using filename) using binary) |
@002c
|
create view vv as select convert(convert(',' using filename) using binary); |
select * from vv; |
convert(convert(',' using filename) using binary) |
@
|
Expected result:
select convert(convert(',' using filename) using binary); |
convert(convert(',' using filename) using binary) |
@002c
|
create view vv as select convert(convert(',' using filename) using binary); |
select * from vv; |
convert(convert(',' using filename) using binary) |
@002c
|
Attachments
Issue Links
- is part of
-
MDEV-27691 make working view-protocol
-
- Closed
-
- relates to
-
MDEV-31553 Double convert of ',' with cursor-protocol gives incorrect result
-
- Open
-
Activity
Field | Original Value | New Value |
---|---|---|
Link |
This issue is part of |
Attachment | vv.frm [ 65012 ] |
Labels | view-protocol |
Assignee | Lena Startseva [ JIRAUSER50478 ] | Oleksandr Byelkin [ sanja ] |
Link | This issue relates to MDEV-31553 [ MDEV-31553 ] |
Fix Version/s | 10.11 [ 27614 ] |
Fix Version/s | 10.10 [ 27530 ] |