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
Setting the readonly flag when initializing the db connection does not stop inserting:
...
$config['readonly'] = true;
$clickHouse = new ClickHouseDB\Client($config);
$clickHouse->database($config['name']);
$clickHouse->setTimeout(10);
$clickHouse->setConnectTimeOut(5);
$clickHouse->ping(true);
$clickHouse->insert($table, $entries, $columns); // this is not supposed to work but it does
The text was updated successfully, but these errors were encountered:
Setting the readonly flag when initializing the db connection does not stop inserting:
The text was updated successfully, but these errors were encountered: