You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
HTTPDriver url https://xxx.us-west-2.aws.clickhouse.cloud:8443/ returned response code 400)
Code: 62. DB::Exception: Syntax error: failed at position 61 ('FORMAT') (line 2, col 2): FORMAT Native. Expected end of query. (SYNTAX_ERROR) (version 22.10.1.15995 (official build))
Is there a way to get this to work, especially for those that cannot be placed as part of the query statement but needs to be enabled beforehand? e.g. SET allow_experimental_X=1
The text was updated successfully, but these errors were encountered:
SET statements should be run using the client.command method and that should work. But it makes sense to check for them in the query method and not apply a format, so I'll see if I can improve that.
SET Statement assigns value to the param setting for the current session, using the following syntax
However, when using it with client.query(), we get the following error.
Is there a way to get this to work, especially for those that cannot be placed as part of the query statement but needs to be enabled beforehand? e.g.
SET allow_experimental_X=1
The text was updated successfully, but these errors were encountered: