v.25.6Improvement
Previously, when input_format_parquet_max_block_size = 0
Previously, when input_format_parquet_max_block_size = 0 (an invalid value) ClickHouse would stuck. Now this behaviour is fixed. This closes #79394. #79601 (abashkeev).Why it matters
This fix prevents ClickHouse from getting stuck when users accidentally setinput_format_parquet_max_block_size to 0, which is an invalid configuration. It improves stability and robustness when processing Parquet input formats.How to use it
Ensure that the settinginput_format_parquet_max_block_size is set to a valid positive integer value. If this setting is accidentally set to 0, ClickHouse will no longer hang but handle it properly after this fix.