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
In the rust version, we're lack many type mapping for arrow type. I only mapped integer and verchar now.
integer
verchar
https://github.com/goldmedal/wren-engine/blob/71a92d7c8133c04f4f6ce1b624df1b5027ce200f/wren-modeling-rs/src/logical_plan/utils.rs#L11
There're others remain types should be supported: https://docs.getwren.ai/engine/reference/fields_types
The text was updated successfully, but these errors were encountered:
We have some type definitions used for getting the metadata of data source in the ibis server. https://github.com/Canner/wren-engine/blob/main/ibis-server/app/model/metadata/dto.py
Each connector handle their rule for type mapping.
wren-engine/ibis-server/app/model/metadata/clickhouse.py
Lines 81 to 85 in 8449442
Mostly, if the type can't be mapped to the WrenType, it would be set to UNKNOWN. Only BigQeury will return the native type of BigQuery.
UNKNOWN
Sorry, something went wrong.
goldmedal
Successfully merging a pull request may close this issue.
Description
In the rust version, we're lack many type mapping for arrow type. I only mapped
integer
andverchar
now.https://github.com/goldmedal/wren-engine/blob/71a92d7c8133c04f4f6ce1b624df1b5027ce200f/wren-modeling-rs/src/logical_plan/utils.rs#L11
There're others remain types should be supported:
https://docs.getwren.ai/engine/reference/fields_types
The text was updated successfully, but these errors were encountered: