v.24.9Bug Fix
Fix Backward Incompatibility in schema_inference_make_columns_nullable Setting for Parquet/Arrow Formats
After https://github.com/ClickHouse/ClickHouse/pull/61984schema_inference_make_columns_nullable=0still can make columnsNullablein Parquet/Arrow formats. The change was backward incompatible and users noticed the changes in the behaviour. This PR makesschema_inference_make_columns_nullable=0to work as before (no Nullable columns will be inferred) and introduces new valueautofor this setting that will make columnsNullableonly if data has information about nullability. #68298 (Kruglov Pavel).