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
- Open
- relates to
-
MDEV-31553 Double convert of ',' with cursor-protocol gives incorrect result
- Open