v.25.11Improvement
Replace TABLE queries
You can see a progress bar, logs and performance statistics forCREATE OR REPLACE TABLEqueries withSELECTin clickhouse-client. This query will no longer lead to timeout even if theSELECTis quite time consuming. Resolves #38416. #87247 (Diskein).
Why it matters
This feature addresses the issue whereCREATE OR REPLACE TABLE queries containing SELECT could lead to client timeouts if the SELECT operation is time consuming. By providing progress indicators and detailed logging, it improves user experience and visibility into query execution progress.How to use it
RunCREATE OR REPLACE TABLE queries with SELECT in clickhouse-client as usual. The client will automatically display a progress bar, execution logs, and performance statistics, and the query will no longer timeout regardless of the SELECT's duration.