aboutsummaryrefslogtreecommitdiffstats
path: root/predicate-search-core/src/main/java/com/yahoo/search/predicate/SubqueryBitmap.java
blob: cf2d88734a6cd99c634368cd6dfa0e29032c7000 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright Vespa.ai. 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;

}