Closed MephistoLynn closed 3 years ago
I think this is the reason of the problem
So Your SQL is not kind of insert SQL?
What's your update SQL?
That is my SQL for updata
ALTER TABLE data_page_product_info UPDATE product_id=200 WHERE data_page_id=999;
That is my SQL for updata
ALTER TABLE data_page_product_info UPDATE product_id=200 WHERE data_page_id=999;
You should know that clickhouse's alter update is async update, you never know when it is finished.
See: https://clickhouse.com/docs/en/sql-reference/statements/alter/update/
Environment
My Environment : DBMS: ClickHouse (ver. 20.10.54441) Case sensitivity: plain=exact, delimited=exact Driver: com.github.housepower.clickhouse.native.jdbc (ver. 54380, JDBC1.1) Effective version: ClickHouse (ver. 20.10.7.4)
Using this Driver ,in any updating operation ,I cannot see the message of affected rows count.
Is that the Driver's Setting or the function which not yet implemented ?