I am new to ClickHouse and wanted to see if I can control the commit behavior. I see there is some flag called implicit_transaction based on https://github.com/ClickHouse/ClickHouse/pull/38344 but it is not clear to me whether this is something I can control from Python code using clickhouse_connect’s get_client or some other API:
from clickhouse_connect import get_client
client = get_client(
host='localhost',
port=8123,
username='default',
password='',
)
Can someone shed light on this? Thanks in advance.