@@ -333,7 +333,7 @@ class CompressedExternalIdTableBase {
333333 AD_CONTRACT_CHECK (NumStaticCols == 0 || NumStaticCols == numCols);
334334 }
335335 // TODO<joka921> Shouldn't be public.
336- std::atomic<bool > isFirstMerge = true ;
336+ std::atomic<bool > isFirstMerge = true ;
337337 // Add a single row to the input. The type of `row` needs to be something that
338338 // can be `push_back`ed to a `IdTable`.
339339 void push (const auto & row) requires requires { currentBlock_.push_back (row); }
@@ -417,7 +417,7 @@ class CompressedExternalIdTableBase {
417417 if (numBlocksPushed_ == 0 ) {
418418 AD_CORRECTNESS_CHECK (this ->numElementsPushed_ ==
419419 this ->currentBlock_ .size ());
420- blockTransformation_ (this ->currentBlock_ );
420+ blockTransformation_ (this ->currentBlock_ );
421421 return false ;
422422 }
423423 pushBlock (std::move (this ->currentBlock_ ));
@@ -645,10 +645,12 @@ class CompressedExternalIdTableSorter
645645 const auto & block = this ->currentBlock_ ;
646646 const auto blocksizeOutput = blocksize.value_or (block.numRows ());
647647 if (block.numRows () <= blocksizeOutput) {
648- // TODO<joka921> We don't need the copy if we only want to iterate once, make this configurable.
649- auto blockAsStatic = IdTableStatic<N>(this ->currentBlock_ .clone ().template toStatic <N>());
648+ // TODO<joka921> We don't need the copy if we only want to iterate once,
649+ // make this configurable.
650+ auto blockAsStatic = IdTableStatic<N>(
651+ this ->currentBlock_ .clone ().template toStatic <N>());
650652 co_yield blockAsStatic;
651- // co_yield std::move(this->currentBlock_).template toStatic<N>();
653+ // co_yield std::move(this->currentBlock_).template toStatic<N>();
652654 } else {
653655 for (size_t i = 0 ; i < block.numRows (); i += blocksizeOutput) {
654656 size_t upper = std::min (i + blocksizeOutput, block.numRows ());
@@ -764,4 +766,4 @@ class CompressedExternalIdTableSorter
764766};
765767} // namespace ad_utility
766768
767- #endif // QLEVER_COMPRESSEDEXTERNALIDTABLE_H
769+ #endif // QLEVER_COMPRESSEDEXTERNALIDTABLE_H
0 commit comments