dosubot[bot] commented on issue #31683: URL: https://github.com/apache/superset/issues/31683#issuecomment-2569048146
<!-- Answer --> The issue might be related to the fact that the `sqlglot` library, which Superset uses for SQL parsing, does not support Kusto SQL syntax. This is explicitly mentioned in the Superset codebase, where it states that Kusto KQL is a SQL-like language but not supported by `sqlglot` <sup>[[1]](https://github.com/apache/superset/blob/master/superset/sql/parse.py)</sup>. Given this limitation, you might need to handle Kusto SQL parsing separately. Superset uses a custom function `split_kql` to manage KQL scripts, which suggests that you may need to implement or adjust custom parsing logic to accommodate Kusto SQL syntax. If you are unable to modify the parsing logic directly, consider checking if there are any community-contributed solutions or workarounds for integrating Kusto SQL with Superset. Alternatively, you might need to explore other ways to transform or adapt your queries to fit within the supported SQL dialects. <!-- Dosu Comment Footer --> *To continue talking to [Dosu](https://dosu.dev), mention @dosu.* --- <sup>Help Dosu learn! Give it feedback: [Great Response](https://app.dosu.dev/response-feedback/9eeb5399-ab40-4744-8add-9acbca3d3859?feedback_type=great_response) | [Irrelevant Answer](https://app.dosu.dev/response-feedback/9eeb5399-ab40-4744-8add-9acbca3d3859?feedback_type=irrelevant_answer) | [Incorrect Sources](https://app.dosu.dev/response-feedback/9eeb5399-ab40-4744-8add-9acbca3d3859?feedback_type=incorrect_sources) | [Too Verbose](https://app.dosu.dev/response-feedback/9eeb5399-ab40-4744-8add-9acbca3d3859?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/9eeb5399-ab40-4744-8add-9acbca3d3859?feedback_type=hallucination) | [Other](https://app.dosu.dev/response-feedback/9eeb5399-ab40-4744-8add-9acbca3d3859?feedback_type=other)</sup> -- 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]
