You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have a use case where we want to know the tables/schemas dependencies of a Presto Query.
The package provides a way to query the presto db with an actual query which would actually execute the query, but instead I'm looking for query parser support. We have such support in java but not in typescript.
The text was updated successfully, but these errors were encountered:
When implementing the SQL Client of the Presto UI, I tried several SQL parsers from the NPM repo, but they don't work well with Presto SQL. Presto SQL is compliant with ANSI SQL, however, it still has some unique formats in some entities, like a fully qualified table name is using <catalog>.<scheme>.<table name> format, and most parsers don't support it.
Hi,
We have a use case where we want to know the tables/schemas dependencies of a Presto Query.
The package provides a way to query the presto db with an actual query which would actually execute the query, but instead I'm looking for query parser support. We have such support in java but not in typescript.
The text was updated successfully, but these errors were encountered: