Skip to content

Commit 2df9bbb

Browse files
committed
make some fields public
1 parent b8e7e66 commit 2df9bbb

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

src/Storages/ObjectStorage/StorageObjectStorageConfiguration.h

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff 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

287288
protected:
288289
bool initialized = false;

0 commit comments

Comments
 (0)