-
Notifications
You must be signed in to change notification settings - Fork 288
fix: GROUP_CONCAT returns incorrect result for JSON type (#23462) #23573
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
base: main
Are you sure you want to change the base?
Conversation
…n#23462) The GROUP_CONCAT function was using concatVar for JSON type which directly appends raw bytejson binary format instead of readable JSON string. Added dedicated concatJson function to properly decode bytejson and convert to JSON string output.
df3eb26 to
f746093
Compare
Merge Queue Status🚫 The pull request has left the queue (rule: This pull request spent 58 minutes 49 seconds in the queue, with no time running CI. Required conditions to merge
ReasonThe merge conditions cannot be satisfied due to failing checks HintYou may have to fix your CI before adding the pull request to the queue again. |
What type of PR is this?
Which issue(s) this PR fixes:
issue #23462
What this PR does / why we need it:
The GROUP_CONCAT function was using concatVar for JSON type which directly appends raw bytejson binary format instead of readable JSON string. Added dedicated concatJson function to properly decode bytejson and convert to JSON string output.