-
Notifications
You must be signed in to change notification settings - Fork 101
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
Use RowBinaryWithNamesAndTypes
#10
Comments
Hi! Any progress with this? Looks like a very important enhancement. |
@loyd do you have a branch for the |
**SUPER HACKY** * Allows for fetching cell-by-cell, with a different type for each * This is a bit of a hack, but can be a solution for ClickHouse#10
@loyd this is a super-hack (but min number of changes) that can get us cell-by-cell fetching of data. I see a few issues with this approach (besides the hackiness, but some of it can be cleaned up):
Going with I welcome any/all feedback... thanks! |
Providing support for deserializing different rows into different types is the foot gun; CH always returns specific data shapes without any variation. Moving to It's not a problem to replace Support for
So, I need to check the actual behavior (and maybe check other libraries). On the Also, the behavior should remain same in case of moving to |
Use
RowBinaryWithNamesAndTypes
instead ofRowBinary
as a primary format in order to supportdeserialize_any
and, hence,serde(flatten)
and type conversions & validation.The text was updated successfully, but these errors were encountered: