We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Originally posted by ZhiHanZ January 19, 2022 clickhouse json format is especially helpful for logging and monitoring application and we could support it https://clickhouse.com/docs/en/interfaces/formats/#jsoneachrow https://clickhouse.com/docs/en/sql-reference/functions/json-functions/ https://docs.snowflake.com/en/sql-reference/data-types-semistructured.html
The text was updated successfully, but these errors were encountered:
If we support Semi-structured Data Types like snowflake : https://docs.snowflake.com/en/sql-reference/data-types-semistructured.html
Semi-structured Data Types
We can make the functions more powerful and streamlined, for example, clickhouse URLS functions: https://clickhouse.com/docs/en/sql-reference/functions/url-functions/
We can only use a parse_url -> Object to do all the URLS function in clickhouse:
parse_url -> Object
select parse_url('https://github.com:80/repo/trunck'); { "fragment": null, "host": "github.com", "parameters": null, "path": "repo/trunck", "port": "80", "query": null, "scheme": "https" } select parse_url('https://github.com:80/repo/trunck'):scheme; "https" select parse_url('https://www.snowflake.com/'):host; "github.com" select parse_url('https://www.snowflake.com/'):port; "80"
Sorry, something went wrong.
interesting papers: https://db.in.tum.de/people/sites/durner/papers/json-tiles-sigmod21.pdf
/assignme
b41sh
No branches or pull requests
Discussed in #3911
Originally posted by ZhiHanZ January 19, 2022
clickhouse json format is especially helpful for logging and monitoring application and we could support it
https://clickhouse.com/docs/en/interfaces/formats/#jsoneachrow
https://clickhouse.com/docs/en/sql-reference/functions/json-functions/
https://docs.snowflake.com/en/sql-reference/data-types-semistructured.html
The text was updated successfully, but these errors were encountered: