File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
src/Storages/ObjectStorage Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -274,15 +274,16 @@ class StorageObjectStorageConfiguration
274274 return false ;
275275 }
276276
277- private:
278- String format = " auto" ;
279- String compression_method = " auto" ;
280- String structure = " auto" ;
281277 PartitionStrategyFactory::StrategyType partition_strategy_type = PartitionStrategyFactory::StrategyType::NONE;
278+ std::shared_ptr<IPartitionStrategy> partition_strategy;
282279 // / Whether partition column values are contained in the actual data.
283280 // / And alternative is with hive partitioning, when they are contained in file path.
284281 bool partition_columns_in_data_file = true ;
285- std::shared_ptr<IPartitionStrategy> partition_strategy;
282+
283+ private:
284+ String format = " auto" ;
285+ String compression_method = " auto" ;
286+ String structure = " auto" ;
286287
287288protected:
288289 bool initialized = false ;
You can’t perform that action at this time.
0 commit comments