JamesIsHuang commented on issue #59692: URL: https://github.com/apache/doris/issues/59692#issuecomment-4009973206
@lucienlgl @WangYa002 I checked the original issue and the earlier fix in `#53291`. My understanding is: - The incorrect-result cases for single `JSON_CONTAINS` calls (case 1 and case 2 in this issue) were already fixed by `#53291`. - The remaining problem is the reopened case 3: chained predicates such as `JSON_CONTAINS(...) AND JSON_CONTAINS(...)` can still fail in FE with `Not support comparison between JSONB literals`. I opened `#61097` for this remaining case: https://github.com/apache/doris/pull/61097 This PR focuses on the FE-side JSON literal comparison path that is triggered during optimization, so the planner does not crash before execution reaches BE. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
