-
Notifications
You must be signed in to change notification settings - Fork 561
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
Add back readUnsignedLeb128 in ClickHouseRowBinaryInputStream #710
Comments
Thanks for pointing this out @vonnagy. I'll add it back in next release. However, please be aware that extended API including |
Will there be any library support for |
Yes. I'm going to create a PR tonight to upload new client, which is async by default and is built on top of gRPC and RowBinary format. With that, you can use |
Merged into develop branch and will release in 0.3.2. |
Did this ever happen? Is it a part of this repo? |
It's been merged into |
When using the ClickHouseRowBinaryInputStream we used to be able to manually read string, arrays, etc by calling readUnsignedLeb128 to get the length and then iterating through the elements. It was removed with version 0.3.0 (commit# 074a030). See here for the change. Since the ClickHouseRowBinaryInputStream class interacts with the private instance of DataInputStream there is no current access to the information.
The following code could be added back.
The text was updated successfully, but these errors were encountered: