We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Many Databricks data types like ARRAY, MAP and STRUCT can be converted to VARCHAR without problem, see #15.
ARRAY
MAP
STRUCT
VARCHAR
Mapping BINARY to VARCHAR does not work, because importing the data fails with the following message:
BINARY
ETL-5402: JDBC-Client-Error: JDBC SQL Type for column=0 (starting at 0) value=-2 is unknown.
In order to import BINARY columns, the adapter needs to rewrite the pushdown query to cast the BINARY column to VARCHAR.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Many Databricks data types like
ARRAY
,MAP
andSTRUCT
can be converted toVARCHAR
without problem, see #15.Mapping
BINARY
toVARCHAR
does not work, because importing the data fails with the following message:In order to import
BINARY
columns, the adapter needs to rewrite the pushdown query to cast theBINARY
column toVARCHAR
.The text was updated successfully, but these errors were encountered: