We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c69dcbc commit 1b4135fCopy full SHA for 1b4135f
src/Storages/ObjectStorage/StorageObjectStorage.cpp
@@ -1,3 +1,4 @@
1
+#include <optional>
2
#include <thread>
3
#include <Core/ColumnWithTypeAndName.h>
4
#include <Storages/ObjectStorage/StorageObjectStorage.h>
@@ -507,7 +508,7 @@ SinkToStoragePtr StorageObjectStorage::import(
507
508
destination_file_path,
509
object_storage,
510
configuration,
- format_settings,
511
+ std::nullopt, /// passing nullopt to force rebuild for format_settings based on query context
512
std::make_shared<const Block>(getInMemoryMetadataPtr()->getSampleBlock()),
513
local_context);
514
}
0 commit comments