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
in dbt-clickhouse code, they will run such commands to get single row or ignore the resulst
cmd='CREATE USER IF NOT EXISTS %s IDENTIFIED WITH sha256_hash BY %s'iftest_cluster!='':
cmd=f'CREATE USER IF NOT EXISTS %s ON CLUSTER "{test_cluster}" IDENTIFIED WITH sha256_hash BY %s'test_client.command(
cmd,
(dbt_user, '5e884898da28047151d0e56f8dc6292773603d0d6aabbdd62a11ef721d1542d8'),
)
The text was updated successfully, but these errors were encountered:
In clickhouse_connect, there is command method
https://github.com/ClickHouse/clickhouse-connect/blob/main/clickhouse_connect/driver/httpclient.py#L315
in dbt-clickhouse code, they will run such commands to get single row or ignore the resulst
The text was updated successfully, but these errors were encountered: