-
Notifications
You must be signed in to change notification settings - Fork 543
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] JSON Support #1833
Comments
@chernser any idea when 0.7.2 Java client will be released? |
Hi @dzmitry-biatenia-smop! How would you use JSON? Do you have a DTO object or do you work directly with some generic classes generated by GSON or Jackson ? Thanks! |
@chernser the basic case - I was able to create a column with JSON type in Clickhouse table with flag allow_experimental_json_type enabled, and even was able to insert some JSON data there with com.clickhouse.client.api.Client#execute(), but when can running any com.clickhouse.client.api.Client.query("select * from table_with_json_column") I'm getting Unsupported format: "JSON" coming from here because response has JSON type here. |
@dzmitry-biatenia-smop |
@chernser are you going to release that fix separately? any ETA for that fix? |
@dzmitry-biatenia-smop |
@chernser can you please notify me when that patch is ready or point me to the correct nightly build? |
@dzmitry-biatenia-smop |
Good day, @dzmitry-biatenia-smop ! I've just merged the JSON support (see example). |
@chernser I tried nightly build as per example you've provided with dependency on new nightly build,
with version
and event could not build a client with those options: Please, advise |
Hi @chernser! |
Description
Client should support JSON Data type (https://clickhouse.com/docs/en/integrations/data-formats/json/overview).
Considerations:
See also:
The text was updated successfully, but these errors were encountered: