-
-
Notifications
You must be signed in to change notification settings - Fork 213
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow usage of functions in LIST delimiter parameter [CORE1453] #1871
Comments
Modified by: @pcisarWorkflow: jira [ 13031 ] => Firebird [ 13931 ] |
Modified by: @asfernandesFix Version: 2.5 Alpha 1 [ 10224 ] assignee: Adriano dos Santos Fernandes [ asfernandes ] summary: Improvement of the LIST() function in FB => Allow usage of functions in LIST delimiter parameter |
Modified by: @asfernandesstatus: Open [ 1 ] => Resolved [ 5 ] resolution: Fixed [ 1 ] Development: Finished |
Modified by: @asfernandesVersion: 2.1.4 [ 10361 ] |
Modified by: @asfernandes |
Modified by: @pmakowskistatus: Resolved [ 5 ] => Closed [ 6 ] |
Modified by: @pavel-zotovQA Status: No test |
Modified by: @pavel-zotovQA Status: No test => Done successfully |
Submitted by: Poul Dige (tabulex)
Is duplicated by CORE3104
Is related to QA303
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
Commits: 3e13fd7 f19d9ec FirebirdSQL/fbt-repository@8a3d33b
The text was updated successfully, but these errors were encountered: