-
Notifications
You must be signed in to change notification settings - Fork 534
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
[client-v2] Including support for bitmap serialization #1814
Conversation
Hi @javiercj93 thanks for submitting this! Would you mind adding a test to cover this data as well? |
Thanks for reviewing @Paultagoras! appreciate it! Please let me know if this change in an existing test would be enough or we need something more specific. |
@javiercj93 would you please resolve conflicts in the merge? |
@chernser done, conflicts resolved |
@javiercj93 appreciate it! Thank you! |
Summary
I have a table structure which has a few aggregate function columns (groupBitmap) and I was unable to directly insert into it as the ClickhouseBitmapColumn was throwing an unsupported data type when serializing.
Checking the code I saw there was a
writeBitmap
function implemented in the BinaryStreamUtils but it was not being used in the SerializerUtils. Not sure if there was any reason behind it or if there are any other considerations to not use it that I am not aware of.I tested the change and I was able to successfully import in a column with such data type.