-
Notifications
You must be signed in to change notification settings - Fork 110
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
No results for UNION type #305
Comments
Hi @jorinvo! This is likely because we do not yet support the // FIXME: Implement support for these types.
var unsupportedTypeToStringMap = map[Type]string{
TYPE_INVALID: "INVALID",
TYPE_UHUGEINT: "UHUGEINT",
TYPE_ARRAY: "ARRAY",
TYPE_UNION: "UNION",
TYPE_BIT: "BIT",
TYPE_ANY: "ANY",
TYPE_VARINT: "VARINT",
} I'm currently implementing the |
@taniabogatsch thanks for the fast reply! Good to know it's simply not supported yet. |
Fair, sounds good :) - I'll let you know here if I find the time to pick it up. 👍 |
Thank you 👍 |
Hi @taniabogatsch, I just wanted to express my gratitude for your efforts and let you know that once the Array type support is available, I'd really appreciate it if you could let me know here in this issue. If it's possible, I would be happy to contribute and help with resolving this issue. Looking forward to the update, and thanks again for all your hard work! |
Hi @NewtonVan - thank you for your kind words! I have already merged We have yet to release a new tagged go-duckdb version, including that |
Hi @taniabogatsch, Thank you so much for the update and for merging the ARRAY type support! I'm really excited to try it out. Thanks again for your efforts ;). |
Hi and thanks for this driver. It works really well until I ran into the following:
A query that contains a union type doesn't return any rows.
In the CLI I can do this:
But in Go the second fmt will never show up:
I originally ran into this in a project and could replicate it isolated like this.
Any ideas what is going on here?
Thanks a lot!
The text was updated successfully, but these errors were encountered: