@@ -268,7 +268,7 @@ class StorageIcebergConfiguration : public StorageObjectStorage::Configuration,
268268
269269 Path getRawPath () const override { return getImpl ().getRawPath (); }
270270 const Path & getPathForRead () const override { return getImpl ().getPathForRead (); }
271- Path getPathForWrite (const std::string & partition_id = " " ) const override { return getImpl ().getPathForWrite (partition_id); }
271+ Path getPathForWrite (const std::string & partition_id) const override { return getImpl ().getPathForWrite (partition_id); }
272272
273273 void setPathForRead (const Path & path) override { getImpl ().setPathForRead (path); }
274274
@@ -333,7 +333,7 @@ class StorageIcebergConfiguration : public StorageObjectStorage::Configuration,
333333 }
334334
335335 void initPartitionStrategy (ASTPtr partition_by, const ColumnsDescription & columns, ContextPtr context) override
336- { return getImpl ().initPartitionStrategy (partition_by, columns, context); }
336+ { getImpl ().initPartitionStrategy (partition_by, columns, context); }
337337
338338 std::optional<ColumnsDescription> tryGetTableStructureFromMetadata () const override
339339 { return getImpl ().tryGetTableStructureFromMetadata (); }
@@ -388,7 +388,7 @@ class StorageIcebergConfiguration : public StorageObjectStorage::Configuration,
388388
389389 PartitionStrategyFactory::StrategyType getPartitionStrategyType () const override { return getImpl ().getPartitionStrategyType (); }
390390 bool getPartitionColumnsInDataFile () const override { return getImpl ().getPartitionColumnsInDataFile (); }
391- const std::shared_ptr<IPartitionStrategy> getPartitionStrategy () const override { return getImpl ().getPartitionStrategy (); }
391+ std::shared_ptr<IPartitionStrategy> getPartitionStrategy () const override { return getImpl ().getPartitionStrategy (); }
392392
393393 void setFormat (const String & format_) override { getImpl ().setFormat (format_); }
394394 void setCompressionMethod (const String & compression_method_) override { getImpl ().setCompressionMethod (compression_method_); }
0 commit comments