terrymanu commented on issue #31508: URL: https://github.com/apache/shardingsphere/issues/31508#issuecomment-5386633701
Hi @iamhucong, thanks for reporting this. All Doris SQL cases listed in this issue are now supported on the current master, so we can close it. - `BITXOR`, `INSTR`, `STRRIGHT` (the `RIGHT` function), and `EXTRACT_URL_PARAMETER` were added by #33258, #33289, #33393 and #33571, with dedicated grammar rules and parser test cases (`select_bitxor`, `select_instr`, `select_strright`, `select_extract_url_parameter`). - `BITSHIFTLEFT`/`BITSHIFTRIGHT` and `LTRIM` are parsed through the regular-function fallback in the Doris grammar (`regularFunctionName` accepts a plain identifier), and `LTRIM` already has a Doris test case (`select_ltrim_function`). Per the issue convention, no extra assert file is needed when a case parses without code changes. - `RANK() OVER (PARTITION BY ... ORDER BY ...)` is covered by the window-function rule, with Doris test case `select_window_rank_doris`. - Both `ALTER RESOURCE ... PROPERTIES (...)` statements are covered by the `alterResource` rule, with test case `alter_resource_properties`. I verified all the above SQLs parse successfully on the latest master. Closing this issue as completed; feel free to reopen if any Doris case still fails on a current version. -- 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]
