Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: GreptimeTeam/greptimedb
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0f2586fec578d7d0109cb0e570e4f72b0f8ada82
Choose a base ref
..
head repository: GreptimeTeam/greptimedb
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9106ae7facc80b736f34bd64097b3d8fb1a4af0f
Choose a head ref
Showing with 1 addition and 2 deletions.
  1. +1 −2 src/mito2/src/sst/index/fulltext_index/applier/builder.rs
3 changes: 1 addition & 2 deletions src/mito2/src/sst/index/fulltext_index/applier/builder.rs
Original file line number Diff line number Diff line change
@@ -183,8 +183,7 @@ impl FulltextPredicate {
let column = metadata.column_by_name(&column.name)?;
let opt = column.column_schema.fulltext_options().ok().flatten()?;

// Skip if use bloom filter
if !opt.enable {
if !opt.enable || opt.backend != FulltextBackend::Bloom {
return None;
};