-
Notifications
You must be signed in to change notification settings - Fork 573
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
ClickHouseColumn bug when parsing a tuple type #889
Labels
Milestone
Comments
Thanks @jnd77, I'm aware of this. Actually it's been fixed in my local in order to support Object/JSON data type. |
Ok great. :) |
|
Looks like still have issue :< -- not working
select tuple(1)::Tuple(i Int32)
-- workaround(longer field name)
select tuple(1)::Tuple(i1 Int32) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi.
There is a bug or unexpected behavior in ClickHouseColumn when parsing a tuple type:
ClickHouseColumn.parse("col_name Tuple(s String, i Int64)")
is throwing the following exception:My use case retrieves the types with a
DESCRIBE TABLE
query and parsing them viaClickHouseColumn.parse
.The text was updated successfully, but these errors were encountered: