
|
If you were logged in you would be able to see more operations.
|
|
|
|
Issue Links:
|
Duplicate
|
|
|
|
This issue is duplicated by:
|
|
CORE-3104
Allows LIST function to accept the use ascii_char as delimiter
|
|
|
|
|
Relate
|
|
|
|
This issue is related to:
|
|
|
|
|
|
|
|
|
In the LIST function it would be codewise nice to be able to use ASCII_CHAR as separator, e.g. in connection with creating a comment list like
SELECT discussion_id, LIST( comment, ASCII_CHAR(13) )
from tcomments
group by discussion_id
As it is now, you can acheive the same functionality by using
SELECT discussion_id, LIST( comment || ASCII_CHAR(13) , '' )
from tcomments
group by discussion_id
|
|
Description
|
In the LIST function it would be codewise nice to be able to use ASCII_CHAR as separator, e.g. in connection with creating a comment list like
SELECT discussion_id, LIST( comment, ASCII_CHAR(13) )
from tcomments
group by discussion_id
As it is now, you can acheive the same functionality by using
SELECT discussion_id, LIST( comment || ASCII_CHAR(13) , '' )
from tcomments
group by discussion_id
|
Show » |
| There are no comments yet on this issue.
|
|