Package org.apache.druid.segment.filter
Class IsBooleanFilter
java.lang.Object
org.apache.druid.segment.filter.IsBooleanFilter
- All Implemented Interfaces:
BooleanUnaryFilter,Filter
SQL three-value logic wrapper for some child
Filter to implement '{filter} IS TRUE' and
'{filter} IS FALSE'. Primarily useful when living beneath a NotFilter because this filter purposely ignores
the value of includeUnknown and so always correctly only returns values that definitely match or do not match
the filter to produce correct results for '{filter} IS NOT TRUE' and '{filter} IS NOT FALSE'. This filter is a
relatively thin wrapper, so should be relatively harmless if used without a 'NOT' filter.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleancanVectorizeMatcher(ColumnInspector inspector) Returns true if this filter can produce a vectorized matcher from its "makeVectorMatcher" method.booleangetBitmapColumnIndex(int numRows, FilterBundle.Builder baseBuilder) Specialized alternative toFilter.getBitmapColumnIndex(ColumnIndexSelector)to allow reuse ofBitmapColumnIndexcreated as part of aFilterBundle.BuildergetBitmapColumnIndex(ColumnIndexSelector selector) Returns aBitmapColumnIndexif this filter supports using a bitmap index for filtering for the given inputColumnIndexSelector.Set of columns used by a filter.inthashCode()booleanisTrue()makeMatcher(ColumnSelectorFactory factory) Get aValueMatcherthat applies this filter to row values.Get aVectorValueMatcherthat applies this filter to row vectors.rewriteRequiredColumns(Map<String, String> columnRewrites) Return a copy of this filter that is identical to the this filter except that it operates on different columns, based on a renaming map where the key is the column to be renamed in the filter, and the value is the new column name.booleanReturns true is this filter is able to return a copy of this filter that is identical to this filter except that it operates on different columns, based on a renaming map.toString()Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface org.apache.druid.query.filter.Filter
makeFilterBundle
-
Constructor Details
-
IsBooleanFilter
-
-
Method Details
-
isTrue
public boolean isTrue() -
getBaseFilter
- Specified by:
getBaseFilterin interfaceBooleanUnaryFilter
-
getBitmapColumnIndex
@Nullable public BitmapColumnIndex getBitmapColumnIndex(int numRows, FilterBundle.Builder baseBuilder) Description copied from interface:BooleanUnaryFilterSpecialized alternative toFilter.getBitmapColumnIndex(ColumnIndexSelector)to allow reuse ofBitmapColumnIndexcreated as part of aFilterBundle.Builder- Specified by:
getBitmapColumnIndexin interfaceBooleanUnaryFilter
-
getBitmapColumnIndex
Description copied from interface:FilterReturns aBitmapColumnIndexif this filter supports using a bitmap index for filtering for the given inputColumnIndexSelector. TheBitmapColumnIndexcan be used to compute into a bitmap indicating rows that match this filter resultBitmapColumnIndex.computeBitmapResult(BitmapResultFactory, boolean), or examine details about the index prior to computing it, viaBitmapColumnIndex.getIndexCapabilities().- Specified by:
getBitmapColumnIndexin interfaceFilter- Parameters:
selector- Object used to create BitmapColumnIndex- Returns:
- BitmapColumnIndex that can build ImmutableBitmap of matched row numbers
-
makeMatcher
Description copied from interface:FilterGet aValueMatcherthat applies this filter to row values.- Specified by:
makeMatcherin interfaceFilter- Parameters:
factory- Object used to create ValueMatchers- Returns:
- ValueMatcher that applies this filter to row values.
-
makeVectorMatcher
Description copied from interface:FilterGet aVectorValueMatcherthat applies this filter to row vectors.- Specified by:
makeVectorMatcherin interfaceFilter- Parameters:
factory- Object used to create ValueMatchers- Returns:
- VectorValueMatcher that applies this filter to row vectors.
-
canVectorizeMatcher
Description copied from interface:FilterReturns true if this filter can produce a vectorized matcher from its "makeVectorMatcher" method.- Specified by:
canVectorizeMatcherin interfaceFilter- Parameters:
inspector- Supplies type information for the selectors this filter will match against
-
getRequiredColumns
Description copied from interface:FilterSet of columns used by a filter.- Specified by:
getRequiredColumnsin interfaceFilter
-
supportsRequiredColumnRewrite
public boolean supportsRequiredColumnRewrite()Description copied from interface:FilterReturns true is this filter is able to return a copy of this filter that is identical to this filter except that it operates on different columns, based on a renaming map.- Specified by:
supportsRequiredColumnRewritein interfaceFilter
-
rewriteRequiredColumns
Description copied from interface:FilterReturn a copy of this filter that is identical to the this filter except that it operates on different columns, based on a renaming map where the key is the column to be renamed in the filter, and the value is the new column name.For example, if I have a filter (A = hello), and I have a renaming map (A -> B), this should return the filter (B = hello)
- Specified by:
rewriteRequiredColumnsin interfaceFilter- Parameters:
columnRewrites- Column rewrite map- Returns:
- Copy of this filter that operates on new columns based on the rewrite map
-
toString
-
equals
-
hashCode
public int hashCode()
-