Skip to content

Commit 47ba454

Browse files
committed
build issue
1 parent 84cdcc2 commit 47ba454

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/Storages/ObjectStorage/StorageObjectStorage.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ SinkToStoragePtr StorageObjectStorage::import(
483483
Block & block_with_partition_values,
484484
std::string & destination_file_path,
485485
bool overwrite_if_exists,
486-
const std::optional<FormatSettings> & format_settings_
486+
const std::optional<FormatSettings> & format_settings_,
487487
ContextPtr local_context)
488488
{
489489
std::string partition_key;

src/Storages/ObjectStorage/StorageObjectStorage.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ class StorageObjectStorage : public IStorage
8686
Block & /* block_with_partition_values */,
8787
std::string & /* destination_file_path */,
8888
bool /* overwrite_if_exists */,
89-
const std::optional<FormatSettings> & /* format_settings_ */
89+
const std::optional<FormatSettings> & /* format_settings_ */,
9090
ContextPtr /* context */) override;
9191

9292
void truncate(

src/Storages/ObjectStorage/StorageObjectStorageCluster.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,7 @@ SinkToStoragePtr StorageObjectStorageCluster::import(
576576
Block & block_with_partition_values,
577577
std::string & destination_file_path,
578578
bool overwrite_if_exists,
579-
const std::optional<FormatSettings> & format_settings_
579+
const std::optional<FormatSettings> & format_settings_,
580580
ContextPtr context)
581581
{
582582
if (pure_storage)

src/Storages/ObjectStorage/StorageObjectStorageCluster.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ class StorageObjectStorageCluster : public IStorageCluster
130130
Block & /* block_with_partition_values */,
131131
std::string & /* destination_file_path */,
132132
bool /* overwrite_if_exists */,
133-
const std::optional<FormatSettings> & /* format_settings_ */
133+
const std::optional<FormatSettings> & /* format_settings_ */,
134134
ContextPtr /* context */) override;
135135
bool prefersLargeBlocks() const override;
136136

0 commit comments

Comments
 (0)