Summary
When SQL contains a block comment with an extra * before the closing slash (i.e. ending with **/), the query fails in the kernel/parser.
On our cloud platform, comments are currently not filtered and are sent directly to Databend, so this issue is user-visible.
Reproduction
Case 1 (works):
Case 2 (fails):
/***fail, succ**/
SELECT 1;
Expected behavior
Both statements should execute successfully and return 1.