-
Notifications
You must be signed in to change notification settings - Fork 243
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding sql dialect to destination capabilities #2393
Conversation
✅ Deploy Preview for dlt-hub-docs canceled.
|
if dialect.name == "mysql" or backend_name in ("mysql", "mariadb"): | ||
# correct max identifier length | ||
# dialect uses 255 (max length for aliases) instead of 64 (max length of identifiers) | ||
caps.max_identifier_length = 64 | ||
caps.format_datetime_literal = _format_mysql_datetime_literal | ||
caps.sqlglot_dialect = "mysql" | ||
|
||
elif backend_name in [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is pretty cool!!!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks very good, thanks for doing the research into the types. What is missing though is that the IbisReadableRelation should be using this info to determine which dialect to use.
e9e1e01
to
cfd82cc
Compare
e427b57
to
268287a
Compare
The tables in the PR description are also updated - dialects for certain destinations (synapse, dremio, motherduck) were marked as working in |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
one additional idea :)
The clickhouse and databricks dialects are supported by ibis. |
…sql is the same as mssql.
4c7779f
to
a80921e
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is very good. just use older version of sqlglot
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approved from my side, I am not sure which would be the correct sqlglot version to use here, @rudolfix should approve this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Description
Adds sqlglot client to destination capabilities where possible. Special treatment for sqlalchemy destination. See the wrap-up below 👇.
Additionally, this PR makes sqlglot a regular dependency. (Added it under
[tool.poetry.dependencies]
and removed everywhere else.poetry lock --no-update
is ran to update the lock file.)Related Issues
Additional Context
SQLAlchemy
For the sqlalchemy destination, we set the dialect based on the
backend_name
of the connection string. As shown below, most of the time thebackend_name
and the dialect string match, but sometimes they slightly differ (i.e.postgresql
andpostgres
).External dialects maintained by SQLAlchemy:
awsathena
athena
redshift
redshift
drill
drill
druid
druid
presto, hive, trino
presto, hive, trino
clickhouse
clickhouse
databricks
databricks
bigquery
bigquery
mssql
tsql
snowflake
snowflake
teradatasql
teradata
Internal dialects:
mssql
tsql
mysql
mysql
oracle
oracle
postgresql
postgres
sqlite
sqlite
All other destinations
"athena"
"bigquery"
"clickhouse"
"databricks"
"duckdb"
"duckdb"
"tsql"
"postgres"
"redshift"
"snowflake"
"tsql"
(previously noted as working)"presto"
(previously noted as working)-
"duckdb"
(previously noted as working)"n/a"
"n/a"
"n/a"