We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfdf5de commit 5ee71bdCopy full SHA for 5ee71bd
1 file changed
src/Processors/Formats/Impl/Parquet/Write.cpp
@@ -651,6 +651,10 @@ void writeColumnImpl(
651
const typename ParquetDType::c_type * converted = converter.getBatch(next_data_offset, data_count);
652
653
if (options.write_page_statistics || options.write_column_chunk_statistics)
654
+/// Workaround for clang bug: https://github.com/llvm/llvm-project/issues/63630
655
+#ifdef MEMORY_SANITIZER
656
+#pragma clang loop vectorize(disable)
657
+#endif
658
for (size_t i = 0; i < data_count; ++i)
659
page_statistics.add(converted[i]);
660
0 commit comments