-
Notifications
You must be signed in to change notification settings - Fork 22
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
can't handle postgres table with geometry column #190
Comments
I'm guessing geometry is being represented as a composite type? Otherwise we already return WHEN c.data_type = 'USER-DEFINED' THEN
CASE
WHEN t.typtype = 'e' THEN 'enum'
WHEN t.typtype = 'c' THEN 'composite'
ELSE t.typname
END |
No. WHEN c.data_type = 'USER-DEFINED' THEN
CASE
WHEN t.typtype = 'e' THEN 'enum'
WHEN t.typtype = 'c' THEN 'composite'
WHEN t.typtype = 'b' THEN t.typname
ELSE c.data_type
END |
@phillipleblanc plz push it forward |
When dealing with special types like |
We currently only map into the best-matching Arrow type that exists - it's up to the consuming application to preserve the semantics if they need to. |
I can't handle postgres table with geometry column because of PR #151.
I think we should modify
SCHEMA_QUERY
. Whenc.data_type = 'USER-DEFINED'
, returnt.typname
.The text was updated successfully, but these errors were encountered: