krutoileshii commented on issue #10338:
URL: https://github.com/apache/seatunnel/issues/10338#issuecomment-3751375285
@dyp12 I was browsing the source code, and it seems that there is a presto
dialect for JDBC.
That should for the most part be identical to Trino. The acceptsURL in
DialectFactory even takes jdbc:trino. Or is this only for the source and not
the sink part?
```
@Override
public boolean acceptsURL(@NonNull String url) {
return url.startsWith("jdbc:presto:") ||
url.startsWith("jdbc:trino:");
}
```
--
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]