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? 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
Useful for debugging and some use cases e.g. grafana/clickhouse-datasource#148 All responses would be marshalled into a map or struct.
The text was updated successfully, but these errors were encountered:
As an alternative consider returning string:
SELECT toString(tuple(*)) as result FROM system.functions LIMIT 3 /* ┌─result───────────────────────────┐ │ ('aes_encrypt_mysql',0,0,'') │ │ ('decrypt',0,0,'') │ │ ('wordShingleMinHashArg',0,0,'') │ └──────────────────────────────────┘ */
Sorry, something went wrong.
Need the same support. For example query
select * from table_name FORMAT JSONEachRow
where the table has id and version columns. and the expected result is like
id
version
{"id":1, "version":1} {"id":2, "version":2}
The ClickHouse client returns the expected result. Expect the driver can return the same.
Currently, driver support NATIVE format only. We plan to introduce in/out multiple formats support in v3.
Thanks @jkaflik ! Just curious what is the timeline for v3?
@benwen-instacart unfortunetely, we don't have it yet defined.
No branches or pull requests
Useful for debugging and some use cases e.g. grafana/clickhouse-datasource#148
All responses would be marshalled into a map or struct.
The text was updated successfully, but these errors were encountered: