Fix styles.

This commit is contained in:
HarryLeeIBM 2023-01-10 09:09:11 -08:00
parent bc48b17817
commit fcf17fdc72
2 changed files with 2 additions and 2 deletions

View File

@ -107,7 +107,7 @@ bool GinFilter::matchInRange(const PostingsCache& postings_cache, UInt32 segment
for (const auto& term_postings : postings_cache) for (const auto& term_postings : postings_cache)
{ {
/// Check if it is in the same segement by searching for segment_id /// Check if it is in the same segment by searching for segment_id
const SegmentedPostingsListContainer& container = term_postings.second; const SegmentedPostingsListContainer& container = term_postings.second;
auto container_it = container.find(segment_id); auto container_it = container.find(segment_id);
if (container_it == container.cend()) if (container_it == container.cend())

View File

@ -25,7 +25,7 @@ struct GinSegmentWithRowIDRange
UInt32 range_end; UInt32 range_end;
}; };
/// GinFilter provides underlying funtionalities for building inverted index and also /// GinFilter provides underlying functionalities for building inverted index and also
/// it does filtering the unmatched rows according to its query string. /// it does filtering the unmatched rows according to its query string.
/// It also builds and uses skipping index which stores (segmentID, RowIDStart, RowIDEnd) triples. /// It also builds and uses skipping index which stores (segmentID, RowIDStart, RowIDEnd) triples.
class GinFilter class GinFilter