aboutsummaryrefslogtreecommitdiffstats
path: root/predicate-search-core/src/main/java/com/yahoo/search/predicate/SubqueryBitmap.java
blob: a59ae5896856fce4dac8c9fbe839a5d0aef56678 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.search.predicate;

/**
 * Constants related to the subquery bitmap in predicate search.
 * 
 * @author bjorncs
 */
public interface SubqueryBitmap {

    /**
     * A feature annotated with the following bitmap will be added to all (64) subqueries.
     */
    long ALL_SUBQUERIES = 0xFFFF_FFFF_FFFF_FFFFl;

    /**
     * Default subquery bitmap.
     */
    long DEFAULT_VALUE = ALL_SUBQUERIES;

}