Coverage Report

Created: 2026-06-24 11:24

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
be/src/exprs/create_predicate_function.h
Line
Count
Source
1
// Licensed to the Apache Software Foundation (ASF) under one
2
// or more contributor license agreements.  See the NOTICE file
3
// distributed with this work for additional information
4
// regarding copyright ownership.  The ASF licenses this file
5
// to you under the Apache License, Version 2.0 (the
6
// "License"); you may not use this file except in compliance
7
// with the License.  You may obtain a copy of the License at
8
//
9
//   http://www.apache.org/licenses/LICENSE-2.0
10
//
11
// Unless required by applicable law or agreed to in writing,
12
// software distributed under the License is distributed on an
13
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
// KIND, either express or implied.  See the License for the
15
// specific language governing permissions and limitations
16
// under the License.
17
18
#pragma once
19
20
#include "common/exception.h"
21
#include "common/status.h"
22
#include "core/data_type/define_primitive_type.h"
23
#include "exprs/function_filter.h"
24
#include "exprs/hybrid_set.h"
25
#include "exprs/minmax_predicate.h"
26
#include "storage/predicate/bloom_filter_predicate.h"
27
#include "storage/predicate/column_predicate.h"
28
#include "storage/predicate/in_list_predicate.h"
29
#include "storage/predicate/like_column_predicate.h"
30
31
namespace doris {
32
33
class MinmaxFunctionTraits {
34
public:
35
    using BasePtr = MinMaxFuncBase*;
36
    template <PrimitiveType type, size_t N>
37
28.6k
    static BasePtr get_function(bool null_aware) {
38
28.6k
        using CppType = typename PrimitiveTypeTraits<type>::CppType;
39
28.6k
        return new MinMaxNumFunc<
40
28.6k
                std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>(
41
28.6k
                null_aware);
42
28.6k
    }
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE2ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
37
223
    static BasePtr get_function(bool null_aware) {
38
223
        using CppType = typename PrimitiveTypeTraits<type>::CppType;
39
223
        return new MinMaxNumFunc<
40
223
                std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>(
41
223
                null_aware);
42
223
    }
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE20ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
37
13
    static BasePtr get_function(bool null_aware) {
38
13
        using CppType = typename PrimitiveTypeTraits<type>::CppType;
39
13
        return new MinMaxNumFunc<
40
13
                std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>(
41
13
                null_aware);
42
13
    }
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE3ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
37
1.44k
    static BasePtr get_function(bool null_aware) {
38
1.44k
        using CppType = typename PrimitiveTypeTraits<type>::CppType;
39
1.44k
        return new MinMaxNumFunc<
40
1.44k
                std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>(
41
1.44k
                null_aware);
42
1.44k
    }
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE4ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
37
1.04k
    static BasePtr get_function(bool null_aware) {
38
1.04k
        using CppType = typename PrimitiveTypeTraits<type>::CppType;
39
1.04k
        return new MinMaxNumFunc<
40
1.04k
                std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>(
41
1.04k
                null_aware);
42
1.04k
    }
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE5ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
37
15.5k
    static BasePtr get_function(bool null_aware) {
38
15.5k
        using CppType = typename PrimitiveTypeTraits<type>::CppType;
39
15.5k
        return new MinMaxNumFunc<
40
15.5k
                std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>(
41
15.5k
                null_aware);
42
15.5k
    }
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE6ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
37
3.22k
    static BasePtr get_function(bool null_aware) {
38
3.22k
        using CppType = typename PrimitiveTypeTraits<type>::CppType;
39
3.22k
        return new MinMaxNumFunc<
40
3.22k
                std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>(
41
3.22k
                null_aware);
42
3.22k
    }
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE7ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
37
206
    static BasePtr get_function(bool null_aware) {
38
206
        using CppType = typename PrimitiveTypeTraits<type>::CppType;
39
206
        return new MinMaxNumFunc<
40
206
                std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>(
41
206
                null_aware);
42
206
    }
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE8ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
37
289
    static BasePtr get_function(bool null_aware) {
38
289
        using CppType = typename PrimitiveTypeTraits<type>::CppType;
39
289
        return new MinMaxNumFunc<
40
289
                std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>(
41
289
                null_aware);
42
289
    }
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE9ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
37
49
    static BasePtr get_function(bool null_aware) {
38
49
        using CppType = typename PrimitiveTypeTraits<type>::CppType;
39
49
        return new MinMaxNumFunc<
40
49
                std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>(
41
49
                null_aware);
42
49
    }
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE11ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
37
1
    static BasePtr get_function(bool null_aware) {
38
1
        using CppType = typename PrimitiveTypeTraits<type>::CppType;
39
1
        return new MinMaxNumFunc<
40
1
                std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>(
41
1
                null_aware);
42
1
    }
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE12ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
37
5
    static BasePtr get_function(bool null_aware) {
38
5
        using CppType = typename PrimitiveTypeTraits<type>::CppType;
39
5
        return new MinMaxNumFunc<
40
5
                std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>(
41
5
                null_aware);
42
5
    }
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE25ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
37
893
    static BasePtr get_function(bool null_aware) {
38
893
        using CppType = typename PrimitiveTypeTraits<type>::CppType;
39
893
        return new MinMaxNumFunc<
40
893
                std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>(
41
893
                null_aware);
42
893
    }
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE26ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
37
3.51k
    static BasePtr get_function(bool null_aware) {
38
3.51k
        using CppType = typename PrimitiveTypeTraits<type>::CppType;
39
3.51k
        return new MinMaxNumFunc<
40
3.51k
                std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>(
41
3.51k
                null_aware);
42
3.51k
    }
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE42ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
37
6
    static BasePtr get_function(bool null_aware) {
38
6
        using CppType = typename PrimitiveTypeTraits<type>::CppType;
39
6
        return new MinMaxNumFunc<
40
6
                std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>(
41
6
                null_aware);
42
6
    }
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE15ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
37
88
    static BasePtr get_function(bool null_aware) {
38
88
        using CppType = typename PrimitiveTypeTraits<type>::CppType;
39
88
        return new MinMaxNumFunc<
40
88
                std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>(
41
88
                null_aware);
42
88
    }
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE10ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
37
355
    static BasePtr get_function(bool null_aware) {
38
355
        using CppType = typename PrimitiveTypeTraits<type>::CppType;
39
355
        return new MinMaxNumFunc<
40
355
                std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>(
41
355
                null_aware);
42
355
    }
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE23ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
37
765
    static BasePtr get_function(bool null_aware) {
38
765
        using CppType = typename PrimitiveTypeTraits<type>::CppType;
39
765
        return new MinMaxNumFunc<
40
765
                std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>(
41
765
                null_aware);
42
765
    }
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE28ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
37
104
    static BasePtr get_function(bool null_aware) {
38
104
        using CppType = typename PrimitiveTypeTraits<type>::CppType;
39
104
        return new MinMaxNumFunc<
40
104
                std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>(
41
104
                null_aware);
42
104
    }
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE29ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
37
684
    static BasePtr get_function(bool null_aware) {
38
684
        using CppType = typename PrimitiveTypeTraits<type>::CppType;
39
684
        return new MinMaxNumFunc<
40
684
                std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>(
41
684
                null_aware);
42
684
    }
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE30ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
37
115
    static BasePtr get_function(bool null_aware) {
38
115
        using CppType = typename PrimitiveTypeTraits<type>::CppType;
39
115
        return new MinMaxNumFunc<
40
115
                std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>(
41
115
                null_aware);
42
115
    }
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE35ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
37
35
    static BasePtr get_function(bool null_aware) {
38
35
        using CppType = typename PrimitiveTypeTraits<type>::CppType;
39
35
        return new MinMaxNumFunc<
40
35
                std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>(
41
35
                null_aware);
42
35
    }
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE36ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
37
13
    static BasePtr get_function(bool null_aware) {
38
13
        using CppType = typename PrimitiveTypeTraits<type>::CppType;
39
13
        return new MinMaxNumFunc<
40
13
                std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>(
41
13
                null_aware);
42
13
    }
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE37ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
37
1
    static BasePtr get_function(bool null_aware) {
38
1
        using CppType = typename PrimitiveTypeTraits<type>::CppType;
39
1
        return new MinMaxNumFunc<
40
1
                std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>(
41
1
                null_aware);
42
1
    }
43
};
44
45
class HybridSetTraits {
46
public:
47
    using BasePtr = HybridSetBase*;
48
    template <PrimitiveType type, size_t N>
49
34.0k
    static BasePtr get_function(bool null_aware) {
50
34.0k
        if constexpr (is_string_type(type)) {
51
1.48k
            return new StringSet<>(null_aware);
52
2.55k
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
2.55k
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
2.55k
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
2.55k
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
2.21k
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
2.21k
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
27.7k
        } else {
59
27.7k
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
27.7k
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
27.7k
        }
62
34.0k
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
225
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
225
        } else {
59
225
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
225
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
225
        }
62
225
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
27
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
27
        } else {
59
27
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
27
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
27
        }
62
27
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
1.47k
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
1.47k
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
1.47k
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
1.47k
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
1.47k
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
1.05k
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
1.05k
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
1.05k
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
1.05k
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
1.05k
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
16.8k
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
16.8k
        } else {
59
16.8k
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
16.8k
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
16.8k
        }
62
16.8k
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
4.72k
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
4.72k
        } else {
59
4.72k
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
4.72k
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
4.72k
        }
62
4.72k
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
178
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
178
        } else {
59
178
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
178
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
178
        }
62
178
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
292
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
292
        } else {
59
292
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
292
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
292
        }
62
292
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
19
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
19
        } else {
59
19
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
19
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
19
        }
62
19
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
13
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
13
        } else {
59
13
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
13
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
13
        }
62
13
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
28
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
28
        } else {
59
28
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
28
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
28
        }
62
28
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
1.04k
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
1.04k
        } else {
59
1.04k
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
1.04k
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
1.04k
        }
62
1.04k
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
3.51k
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
3.51k
        } else {
59
3.51k
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
3.51k
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
3.51k
        }
62
3.51k
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
15
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
15
        } else {
59
15
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
15
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
15
        }
62
15
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE15ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
92
    static BasePtr get_function(bool null_aware) {
50
92
        if constexpr (is_string_type(type)) {
51
92
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
92
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE10ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
720
    static BasePtr get_function(bool null_aware) {
50
720
        if constexpr (is_string_type(type)) {
51
720
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
720
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE23ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
670
    static BasePtr get_function(bool null_aware) {
50
670
        if constexpr (is_string_type(type)) {
51
670
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
670
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE28ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
114
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
114
        } else {
59
114
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
114
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
114
        }
62
114
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
605
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
605
        } else {
59
605
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
605
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
605
        }
62
605
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
88
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
88
        } else {
59
88
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
88
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
88
        }
62
88
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
58
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
58
        } else {
59
58
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
58
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
58
        }
62
58
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
27
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
27
        } else {
59
27
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
27
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
27
        }
62
27
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
15
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
15
        } else {
59
15
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
15
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
15
        }
62
15
    }
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm1EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm1EEEPNS_13HybridSetBaseEb
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm1EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
6
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
6
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
6
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
6
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
6
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm1EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
1
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
1
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
1
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
1
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
1
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm1EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
457
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
457
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
457
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
457
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
457
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm1EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
5
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
5
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
5
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
5
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
5
    }
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm1EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm1EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm1EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm1EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm1EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm1EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm1EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm1EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE15ELm1EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE10ELm1EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE23ELm1EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE28ELm1EEEPNS_13HybridSetBaseEb
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm1EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
1
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
1
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
1
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
1
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
1
    }
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm1EEEPNS_13HybridSetBaseEb
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm1EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
3
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
3
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
3
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
3
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
3
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm1EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
8
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
8
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
8
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
8
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
8
    }
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm1EEEPNS_13HybridSetBaseEb
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm2EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
3
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
3
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
3
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
3
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
3
    }
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm2EEEPNS_13HybridSetBaseEb
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm2EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
5
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
5
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
5
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
5
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
5
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm2EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
1
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
1
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
1
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
1
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
1
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm2EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
841
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
841
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
841
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
841
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
841
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm2EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
259
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
259
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
259
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
259
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
259
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm2EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
2
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
2
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
2
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
2
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
2
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm2EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
2
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
2
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
2
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
2
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
2
    }
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm2EEEPNS_13HybridSetBaseEb
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm2EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
3
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
3
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
3
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
3
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
3
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm2EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
3
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
3
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
3
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
3
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
3
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm2EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
50
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
50
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
50
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
50
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
50
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm2EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
41
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
41
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
41
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
41
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
41
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm2EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
2
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
2
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
2
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
2
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
2
    }
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE15ELm2EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE10ELm2EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE23ELm2EEEPNS_13HybridSetBaseEb
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE28ELm2EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
5
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
5
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
5
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
5
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
5
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm2EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
8
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
8
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
8
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
8
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
8
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm2EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
5
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
5
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
5
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
5
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
5
    }
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm2EEEPNS_13HybridSetBaseEb
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm2EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
9
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
9
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
9
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
9
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
9
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm2EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
8
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
8
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
8
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
8
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
8
    }
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm3EEEPNS_13HybridSetBaseEb
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
1
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
1
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
1
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
1
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
1
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
4
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
4
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
4
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
4
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
4
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
5
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
5
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
5
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
5
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
5
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
187
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
187
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
187
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
187
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
187
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
159
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
159
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
159
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
159
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
159
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
3
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
3
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
3
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
3
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
3
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
1
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
1
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
1
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
1
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
1
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
2
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
2
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
2
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
2
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
2
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
1
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
1
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
1
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
1
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
1
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
1
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
1
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
1
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
1
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
1
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
3
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
3
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
3
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
3
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
3
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
2
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
2
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
2
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
2
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
2
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
5
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
5
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
5
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
5
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
5
    }
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE15ELm3EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE10ELm3EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE23ELm3EEEPNS_13HybridSetBaseEb
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE28ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
1
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
1
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
1
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
1
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
1
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
1
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
1
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
1
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
1
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
1
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
2
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
2
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
2
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
2
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
2
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
3
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
3
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
3
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
3
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
3
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
1
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
1
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
1
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
1
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
1
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
1
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
1
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
1
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
1
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
1
    }
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm4EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm4EEEPNS_13HybridSetBaseEb
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm4EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
1
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
1
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
1
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
1
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
1
    }
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm4EEEPNS_13HybridSetBaseEb
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm4EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
39
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
39
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
39
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
39
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
39
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm4EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
3
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
3
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
3
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
3
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
3
    }
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm4EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm4EEEPNS_13HybridSetBaseEb
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm4EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
2
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
2
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
2
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
2
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
2
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm4EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
6
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
6
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
6
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
6
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
6
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm4EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
6
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
6
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
6
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
6
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
6
    }
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm4EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm4EEEPNS_13HybridSetBaseEb
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm4EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
8
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
8
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
8
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
8
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
8
    }
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE15ELm4EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE10ELm4EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE23ELm4EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE28ELm4EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm4EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm4EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm4EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm4EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm4EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm5EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm5EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm5EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm5EEEPNS_13HybridSetBaseEb
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm5EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
13
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
13
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
13
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
13
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
13
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm5EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
2
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
2
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
2
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
2
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
2
    }
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm5EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm5EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm5EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm5EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm5EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm5EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm5EEEPNS_13HybridSetBaseEb
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm5EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
4
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
4
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
4
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
4
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
4
    }
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE15ELm5EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE10ELm5EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE23ELm5EEEPNS_13HybridSetBaseEb
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE28ELm5EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
2
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
2
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
2
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
2
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
2
    }
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm5EEEPNS_13HybridSetBaseEb
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm5EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
1
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
1
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
1
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
1
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
1
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm5EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
2
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
2
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
2
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
2
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
2
    }
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm5EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm5EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm6EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm6EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm6EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm6EEEPNS_13HybridSetBaseEb
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm6EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
4
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
4
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
4
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
4
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
4
    }
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm6EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
1
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
1
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
1
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
1
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
1
    }
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm6EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm6EEEPNS_13HybridSetBaseEb
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm6EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
4
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
4
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
4
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
4
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
4
    }
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm6EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm6EEEPNS_13HybridSetBaseEb
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm6EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
1
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
1
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
1
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
1
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
1
    }
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm6EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm6EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE15ELm6EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE10ELm6EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE23ELm6EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE28ELm6EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm6EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm6EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm6EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm6EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm6EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm7EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm7EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm7EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm7EEEPNS_13HybridSetBaseEb
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm7EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
11
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
11
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
11
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
11
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
11
    }
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm7EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm7EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm7EEEPNS_13HybridSetBaseEb
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm7EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
2
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
2
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
2
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
2
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
2
    }
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm7EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm7EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm7EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm7EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm7EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE15ELm7EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE10ELm7EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE23ELm7EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE28ELm7EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm7EEEPNS_13HybridSetBaseEb
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm7EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
2
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
2
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
2
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
2
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
2
    }
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm7EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm7EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm7EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm8EEEPNS_13HybridSetBaseEb
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm8EEEPNS_13HybridSetBaseEb
Line
Count
Source
49
10
    static BasePtr get_function(bool null_aware) {
50
        if constexpr (is_string_type(type)) {
51
            return new StringSet<>(null_aware);
52
        } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) {
53
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
54
            return new HybridSet<type, BitSetContainer<CppType>>(null_aware);
55
10
        } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) {
56
10
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
57
10
            return new HybridSet<type, FixedContainer<CppType, N>>(null_aware);
58
        } else {
59
            using CppType = typename PrimitiveTypeTraits<type>::CppType;
60
            return new HybridSet<type, DynamicContainer<CppType>>(null_aware);
61
        }
62
10
    }
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE15ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE10ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE23ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE28ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm8EEEPNS_13HybridSetBaseEb
63
};
64
65
class BloomFilterTraits {
66
public:
67
    using BasePtr = BloomFilterFuncBase*;
68
    template <PrimitiveType type, size_t N>
69
18.7k
    static BasePtr get_function(bool null_aware) {
70
18.7k
        return new BloomFilterFunc<type>(null_aware);
71
18.7k
    }
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE2ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
69
239
    static BasePtr get_function(bool null_aware) {
70
239
        return new BloomFilterFunc<type>(null_aware);
71
239
    }
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE20ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
69
35
    static BasePtr get_function(bool null_aware) {
70
35
        return new BloomFilterFunc<type>(null_aware);
71
35
    }
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE3ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
69
572
    static BasePtr get_function(bool null_aware) {
70
572
        return new BloomFilterFunc<type>(null_aware);
71
572
    }
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE4ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
69
492
    static BasePtr get_function(bool null_aware) {
70
492
        return new BloomFilterFunc<type>(null_aware);
71
492
    }
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE5ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
69
9.84k
    static BasePtr get_function(bool null_aware) {
70
9.84k
        return new BloomFilterFunc<type>(null_aware);
71
9.84k
    }
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE6ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
69
3.40k
    static BasePtr get_function(bool null_aware) {
70
3.40k
        return new BloomFilterFunc<type>(null_aware);
71
3.40k
    }
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE7ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
69
193
    static BasePtr get_function(bool null_aware) {
70
193
        return new BloomFilterFunc<type>(null_aware);
71
193
    }
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE8ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
69
288
    static BasePtr get_function(bool null_aware) {
70
288
        return new BloomFilterFunc<type>(null_aware);
71
288
    }
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE9ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
69
4
    static BasePtr get_function(bool null_aware) {
70
4
        return new BloomFilterFunc<type>(null_aware);
71
4
    }
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE11ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
69
54
    static BasePtr get_function(bool null_aware) {
70
54
        return new BloomFilterFunc<type>(null_aware);
71
54
    }
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE12ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
69
61
    static BasePtr get_function(bool null_aware) {
70
61
        return new BloomFilterFunc<type>(null_aware);
71
61
    }
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE25ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
69
905
    static BasePtr get_function(bool null_aware) {
70
905
        return new BloomFilterFunc<type>(null_aware);
71
905
    }
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE26ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
69
983
    static BasePtr get_function(bool null_aware) {
70
983
        return new BloomFilterFunc<type>(null_aware);
71
983
    }
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE42ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
69
9
    static BasePtr get_function(bool null_aware) {
70
9
        return new BloomFilterFunc<type>(null_aware);
71
9
    }
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE15ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
69
97
    static BasePtr get_function(bool null_aware) {
70
97
        return new BloomFilterFunc<type>(null_aware);
71
97
    }
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE10ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
69
269
    static BasePtr get_function(bool null_aware) {
70
269
        return new BloomFilterFunc<type>(null_aware);
71
269
    }
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE23ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
69
722
    static BasePtr get_function(bool null_aware) {
70
722
        return new BloomFilterFunc<type>(null_aware);
71
722
    }
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE28ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
69
49
    static BasePtr get_function(bool null_aware) {
70
49
        return new BloomFilterFunc<type>(null_aware);
71
49
    }
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE29ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
69
470
    static BasePtr get_function(bool null_aware) {
70
470
        return new BloomFilterFunc<type>(null_aware);
71
470
    }
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE30ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
69
38
    static BasePtr get_function(bool null_aware) {
70
38
        return new BloomFilterFunc<type>(null_aware);
71
38
    }
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE35ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
69
44
    static BasePtr get_function(bool null_aware) {
70
44
        return new BloomFilterFunc<type>(null_aware);
71
44
    }
Unexecuted instantiation: _ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE36ELm0EEEPNS_19BloomFilterFuncBaseEb
Unexecuted instantiation: _ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE37ELm0EEEPNS_19BloomFilterFuncBaseEb
72
};
73
74
template <class Traits>
75
class PredicateFunctionCreator {
76
public:
77
    template <PrimitiveType type, size_t N = 0>
78
81.4k
    static typename Traits::BasePtr create(bool null_aware) {
79
81.4k
        return Traits::template get_function<type, N>(null_aware);
80
81.4k
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
225
    static typename Traits::BasePtr create(bool null_aware) {
79
225
        return Traits::template get_function<type, N>(null_aware);
80
225
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
27
    static typename Traits::BasePtr create(bool null_aware) {
79
27
        return Traits::template get_function<type, N>(null_aware);
80
27
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
1.47k
    static typename Traits::BasePtr create(bool null_aware) {
79
1.47k
        return Traits::template get_function<type, N>(null_aware);
80
1.47k
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
1.05k
    static typename Traits::BasePtr create(bool null_aware) {
79
1.05k
        return Traits::template get_function<type, N>(null_aware);
80
1.05k
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
16.7k
    static typename Traits::BasePtr create(bool null_aware) {
79
16.7k
        return Traits::template get_function<type, N>(null_aware);
80
16.7k
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
4.71k
    static typename Traits::BasePtr create(bool null_aware) {
79
4.71k
        return Traits::template get_function<type, N>(null_aware);
80
4.71k
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
178
    static typename Traits::BasePtr create(bool null_aware) {
79
178
        return Traits::template get_function<type, N>(null_aware);
80
178
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
292
    static typename Traits::BasePtr create(bool null_aware) {
79
292
        return Traits::template get_function<type, N>(null_aware);
80
292
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
19
    static typename Traits::BasePtr create(bool null_aware) {
79
19
        return Traits::template get_function<type, N>(null_aware);
80
19
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
13
    static typename Traits::BasePtr create(bool null_aware) {
79
13
        return Traits::template get_function<type, N>(null_aware);
80
13
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
28
    static typename Traits::BasePtr create(bool null_aware) {
79
28
        return Traits::template get_function<type, N>(null_aware);
80
28
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
1.03k
    static typename Traits::BasePtr create(bool null_aware) {
79
1.03k
        return Traits::template get_function<type, N>(null_aware);
80
1.03k
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
3.51k
    static typename Traits::BasePtr create(bool null_aware) {
79
3.51k
        return Traits::template get_function<type, N>(null_aware);
80
3.51k
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
15
    static typename Traits::BasePtr create(bool null_aware) {
79
15
        return Traits::template get_function<type, N>(null_aware);
80
15
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE15ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
92
    static typename Traits::BasePtr create(bool null_aware) {
79
92
        return Traits::template get_function<type, N>(null_aware);
80
92
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE10ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
720
    static typename Traits::BasePtr create(bool null_aware) {
79
720
        return Traits::template get_function<type, N>(null_aware);
80
720
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE23ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
670
    static typename Traits::BasePtr create(bool null_aware) {
79
670
        return Traits::template get_function<type, N>(null_aware);
80
670
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE28ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
114
    static typename Traits::BasePtr create(bool null_aware) {
79
114
        return Traits::template get_function<type, N>(null_aware);
80
114
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
605
    static typename Traits::BasePtr create(bool null_aware) {
79
605
        return Traits::template get_function<type, N>(null_aware);
80
605
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
88
    static typename Traits::BasePtr create(bool null_aware) {
79
88
        return Traits::template get_function<type, N>(null_aware);
80
88
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
58
    static typename Traits::BasePtr create(bool null_aware) {
79
58
        return Traits::template get_function<type, N>(null_aware);
80
58
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
27
    static typename Traits::BasePtr create(bool null_aware) {
79
27
        return Traits::template get_function<type, N>(null_aware);
80
27
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm0EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
15
    static typename Traits::BasePtr create(bool null_aware) {
79
15
        return Traits::template get_function<type, N>(null_aware);
80
15
    }
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm1EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm1EEEPNS_13HybridSetBaseEb
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm1EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
6
    static typename Traits::BasePtr create(bool null_aware) {
79
6
        return Traits::template get_function<type, N>(null_aware);
80
6
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm1EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
1
    static typename Traits::BasePtr create(bool null_aware) {
79
1
        return Traits::template get_function<type, N>(null_aware);
80
1
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm1EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
457
    static typename Traits::BasePtr create(bool null_aware) {
79
457
        return Traits::template get_function<type, N>(null_aware);
80
457
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm1EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
5
    static typename Traits::BasePtr create(bool null_aware) {
79
5
        return Traits::template get_function<type, N>(null_aware);
80
5
    }
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm1EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm1EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm1EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm1EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm1EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm1EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm1EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm1EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE15ELm1EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE10ELm1EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE23ELm1EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE28ELm1EEEPNS_13HybridSetBaseEb
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm1EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
1
    static typename Traits::BasePtr create(bool null_aware) {
79
1
        return Traits::template get_function<type, N>(null_aware);
80
1
    }
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm1EEEPNS_13HybridSetBaseEb
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm1EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
3
    static typename Traits::BasePtr create(bool null_aware) {
79
3
        return Traits::template get_function<type, N>(null_aware);
80
3
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm1EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
8
    static typename Traits::BasePtr create(bool null_aware) {
79
8
        return Traits::template get_function<type, N>(null_aware);
80
8
    }
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm1EEEPNS_13HybridSetBaseEb
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm2EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
3
    static typename Traits::BasePtr create(bool null_aware) {
79
3
        return Traits::template get_function<type, N>(null_aware);
80
3
    }
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm2EEEPNS_13HybridSetBaseEb
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm2EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
5
    static typename Traits::BasePtr create(bool null_aware) {
79
5
        return Traits::template get_function<type, N>(null_aware);
80
5
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm2EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
1
    static typename Traits::BasePtr create(bool null_aware) {
79
1
        return Traits::template get_function<type, N>(null_aware);
80
1
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm2EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
841
    static typename Traits::BasePtr create(bool null_aware) {
79
841
        return Traits::template get_function<type, N>(null_aware);
80
841
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm2EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
259
    static typename Traits::BasePtr create(bool null_aware) {
79
259
        return Traits::template get_function<type, N>(null_aware);
80
259
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm2EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
2
    static typename Traits::BasePtr create(bool null_aware) {
79
2
        return Traits::template get_function<type, N>(null_aware);
80
2
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm2EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
2
    static typename Traits::BasePtr create(bool null_aware) {
79
2
        return Traits::template get_function<type, N>(null_aware);
80
2
    }
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm2EEEPNS_13HybridSetBaseEb
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm2EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
3
    static typename Traits::BasePtr create(bool null_aware) {
79
3
        return Traits::template get_function<type, N>(null_aware);
80
3
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm2EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
3
    static typename Traits::BasePtr create(bool null_aware) {
79
3
        return Traits::template get_function<type, N>(null_aware);
80
3
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm2EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
50
    static typename Traits::BasePtr create(bool null_aware) {
79
50
        return Traits::template get_function<type, N>(null_aware);
80
50
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm2EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
41
    static typename Traits::BasePtr create(bool null_aware) {
79
41
        return Traits::template get_function<type, N>(null_aware);
80
41
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm2EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
2
    static typename Traits::BasePtr create(bool null_aware) {
79
2
        return Traits::template get_function<type, N>(null_aware);
80
2
    }
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE15ELm2EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE10ELm2EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE23ELm2EEEPNS_13HybridSetBaseEb
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE28ELm2EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
5
    static typename Traits::BasePtr create(bool null_aware) {
79
5
        return Traits::template get_function<type, N>(null_aware);
80
5
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm2EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
8
    static typename Traits::BasePtr create(bool null_aware) {
79
8
        return Traits::template get_function<type, N>(null_aware);
80
8
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm2EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
5
    static typename Traits::BasePtr create(bool null_aware) {
79
5
        return Traits::template get_function<type, N>(null_aware);
80
5
    }
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm2EEEPNS_13HybridSetBaseEb
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm2EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
9
    static typename Traits::BasePtr create(bool null_aware) {
79
9
        return Traits::template get_function<type, N>(null_aware);
80
9
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm2EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
8
    static typename Traits::BasePtr create(bool null_aware) {
79
8
        return Traits::template get_function<type, N>(null_aware);
80
8
    }
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm3EEEPNS_13HybridSetBaseEb
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
1
    static typename Traits::BasePtr create(bool null_aware) {
79
1
        return Traits::template get_function<type, N>(null_aware);
80
1
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
4
    static typename Traits::BasePtr create(bool null_aware) {
79
4
        return Traits::template get_function<type, N>(null_aware);
80
4
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
5
    static typename Traits::BasePtr create(bool null_aware) {
79
5
        return Traits::template get_function<type, N>(null_aware);
80
5
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
187
    static typename Traits::BasePtr create(bool null_aware) {
79
187
        return Traits::template get_function<type, N>(null_aware);
80
187
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
159
    static typename Traits::BasePtr create(bool null_aware) {
79
159
        return Traits::template get_function<type, N>(null_aware);
80
159
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
3
    static typename Traits::BasePtr create(bool null_aware) {
79
3
        return Traits::template get_function<type, N>(null_aware);
80
3
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
1
    static typename Traits::BasePtr create(bool null_aware) {
79
1
        return Traits::template get_function<type, N>(null_aware);
80
1
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
2
    static typename Traits::BasePtr create(bool null_aware) {
79
2
        return Traits::template get_function<type, N>(null_aware);
80
2
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
1
    static typename Traits::BasePtr create(bool null_aware) {
79
1
        return Traits::template get_function<type, N>(null_aware);
80
1
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
1
    static typename Traits::BasePtr create(bool null_aware) {
79
1
        return Traits::template get_function<type, N>(null_aware);
80
1
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
3
    static typename Traits::BasePtr create(bool null_aware) {
79
3
        return Traits::template get_function<type, N>(null_aware);
80
3
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
2
    static typename Traits::BasePtr create(bool null_aware) {
79
2
        return Traits::template get_function<type, N>(null_aware);
80
2
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
5
    static typename Traits::BasePtr create(bool null_aware) {
79
5
        return Traits::template get_function<type, N>(null_aware);
80
5
    }
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE15ELm3EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE10ELm3EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE23ELm3EEEPNS_13HybridSetBaseEb
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE28ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
1
    static typename Traits::BasePtr create(bool null_aware) {
79
1
        return Traits::template get_function<type, N>(null_aware);
80
1
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
1
    static typename Traits::BasePtr create(bool null_aware) {
79
1
        return Traits::template get_function<type, N>(null_aware);
80
1
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
2
    static typename Traits::BasePtr create(bool null_aware) {
79
2
        return Traits::template get_function<type, N>(null_aware);
80
2
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
3
    static typename Traits::BasePtr create(bool null_aware) {
79
3
        return Traits::template get_function<type, N>(null_aware);
80
3
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
1
    static typename Traits::BasePtr create(bool null_aware) {
79
1
        return Traits::template get_function<type, N>(null_aware);
80
1
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm3EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
1
    static typename Traits::BasePtr create(bool null_aware) {
79
1
        return Traits::template get_function<type, N>(null_aware);
80
1
    }
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm4EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm4EEEPNS_13HybridSetBaseEb
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm4EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
1
    static typename Traits::BasePtr create(bool null_aware) {
79
1
        return Traits::template get_function<type, N>(null_aware);
80
1
    }
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm4EEEPNS_13HybridSetBaseEb
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm4EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
39
    static typename Traits::BasePtr create(bool null_aware) {
79
39
        return Traits::template get_function<type, N>(null_aware);
80
39
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm4EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
3
    static typename Traits::BasePtr create(bool null_aware) {
79
3
        return Traits::template get_function<type, N>(null_aware);
80
3
    }
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm4EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm4EEEPNS_13HybridSetBaseEb
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm4EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
2
    static typename Traits::BasePtr create(bool null_aware) {
79
2
        return Traits::template get_function<type, N>(null_aware);
80
2
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm4EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
6
    static typename Traits::BasePtr create(bool null_aware) {
79
6
        return Traits::template get_function<type, N>(null_aware);
80
6
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm4EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
6
    static typename Traits::BasePtr create(bool null_aware) {
79
6
        return Traits::template get_function<type, N>(null_aware);
80
6
    }
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm4EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm4EEEPNS_13HybridSetBaseEb
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm4EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
8
    static typename Traits::BasePtr create(bool null_aware) {
79
8
        return Traits::template get_function<type, N>(null_aware);
80
8
    }
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE15ELm4EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE10ELm4EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE23ELm4EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE28ELm4EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm4EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm4EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm4EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm4EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm4EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm5EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm5EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm5EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm5EEEPNS_13HybridSetBaseEb
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm5EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
13
    static typename Traits::BasePtr create(bool null_aware) {
79
13
        return Traits::template get_function<type, N>(null_aware);
80
13
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm5EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
2
    static typename Traits::BasePtr create(bool null_aware) {
79
2
        return Traits::template get_function<type, N>(null_aware);
80
2
    }
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm5EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm5EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm5EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm5EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm5EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm5EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm5EEEPNS_13HybridSetBaseEb
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm5EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
4
    static typename Traits::BasePtr create(bool null_aware) {
79
4
        return Traits::template get_function<type, N>(null_aware);
80
4
    }
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE15ELm5EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE10ELm5EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE23ELm5EEEPNS_13HybridSetBaseEb
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE28ELm5EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
2
    static typename Traits::BasePtr create(bool null_aware) {
79
2
        return Traits::template get_function<type, N>(null_aware);
80
2
    }
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm5EEEPNS_13HybridSetBaseEb
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm5EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
1
    static typename Traits::BasePtr create(bool null_aware) {
79
1
        return Traits::template get_function<type, N>(null_aware);
80
1
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm5EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
2
    static typename Traits::BasePtr create(bool null_aware) {
79
2
        return Traits::template get_function<type, N>(null_aware);
80
2
    }
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm5EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm5EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm6EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm6EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm6EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm6EEEPNS_13HybridSetBaseEb
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm6EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
4
    static typename Traits::BasePtr create(bool null_aware) {
79
4
        return Traits::template get_function<type, N>(null_aware);
80
4
    }
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm6EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
1
    static typename Traits::BasePtr create(bool null_aware) {
79
1
        return Traits::template get_function<type, N>(null_aware);
80
1
    }
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm6EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm6EEEPNS_13HybridSetBaseEb
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm6EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
4
    static typename Traits::BasePtr create(bool null_aware) {
79
4
        return Traits::template get_function<type, N>(null_aware);
80
4
    }
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm6EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm6EEEPNS_13HybridSetBaseEb
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm6EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
1
    static typename Traits::BasePtr create(bool null_aware) {
79
1
        return Traits::template get_function<type, N>(null_aware);
80
1
    }
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm6EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm6EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE15ELm6EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE10ELm6EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE23ELm6EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE28ELm6EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm6EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm6EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm6EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm6EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm6EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm7EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm7EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm7EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm7EEEPNS_13HybridSetBaseEb
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm7EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
11
    static typename Traits::BasePtr create(bool null_aware) {
79
11
        return Traits::template get_function<type, N>(null_aware);
80
11
    }
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm7EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm7EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm7EEEPNS_13HybridSetBaseEb
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm7EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
2
    static typename Traits::BasePtr create(bool null_aware) {
79
2
        return Traits::template get_function<type, N>(null_aware);
80
2
    }
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm7EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm7EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm7EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm7EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm7EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE15ELm7EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE10ELm7EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE23ELm7EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE28ELm7EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm7EEEPNS_13HybridSetBaseEb
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm7EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
2
    static typename Traits::BasePtr create(bool null_aware) {
79
2
        return Traits::template get_function<type, N>(null_aware);
80
2
    }
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm7EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm7EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm7EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm8EEEPNS_13HybridSetBaseEb
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm8EEEPNS_13HybridSetBaseEb
Line
Count
Source
78
10
    static typename Traits::BasePtr create(bool null_aware) {
79
10
        return Traits::template get_function<type, N>(null_aware);
80
10
    }
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE15ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE10ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE23ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE28ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm8EEEPNS_13HybridSetBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm8EEEPNS_13HybridSetBaseEb
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE2ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
78
223
    static typename Traits::BasePtr create(bool null_aware) {
79
223
        return Traits::template get_function<type, N>(null_aware);
80
223
    }
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE20ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
78
13
    static typename Traits::BasePtr create(bool null_aware) {
79
13
        return Traits::template get_function<type, N>(null_aware);
80
13
    }
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE3ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
78
1.44k
    static typename Traits::BasePtr create(bool null_aware) {
79
1.44k
        return Traits::template get_function<type, N>(null_aware);
80
1.44k
    }
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE4ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
78
1.04k
    static typename Traits::BasePtr create(bool null_aware) {
79
1.04k
        return Traits::template get_function<type, N>(null_aware);
80
1.04k
    }
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE5ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
78
15.5k
    static typename Traits::BasePtr create(bool null_aware) {
79
15.5k
        return Traits::template get_function<type, N>(null_aware);
80
15.5k
    }
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE6ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
78
3.22k
    static typename Traits::BasePtr create(bool null_aware) {
79
3.22k
        return Traits::template get_function<type, N>(null_aware);
80
3.22k
    }
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE7ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
78
206
    static typename Traits::BasePtr create(bool null_aware) {
79
206
        return Traits::template get_function<type, N>(null_aware);
80
206
    }
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE8ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
78
289
    static typename Traits::BasePtr create(bool null_aware) {
79
289
        return Traits::template get_function<type, N>(null_aware);
80
289
    }
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE9ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
78
49
    static typename Traits::BasePtr create(bool null_aware) {
79
49
        return Traits::template get_function<type, N>(null_aware);
80
49
    }
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE11ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
78
1
    static typename Traits::BasePtr create(bool null_aware) {
79
1
        return Traits::template get_function<type, N>(null_aware);
80
1
    }
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE12ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
78
5
    static typename Traits::BasePtr create(bool null_aware) {
79
5
        return Traits::template get_function<type, N>(null_aware);
80
5
    }
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE25ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
78
893
    static typename Traits::BasePtr create(bool null_aware) {
79
893
        return Traits::template get_function<type, N>(null_aware);
80
893
    }
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE26ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
78
3.51k
    static typename Traits::BasePtr create(bool null_aware) {
79
3.51k
        return Traits::template get_function<type, N>(null_aware);
80
3.51k
    }
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE42ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
78
6
    static typename Traits::BasePtr create(bool null_aware) {
79
6
        return Traits::template get_function<type, N>(null_aware);
80
6
    }
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE15ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
78
86
    static typename Traits::BasePtr create(bool null_aware) {
79
86
        return Traits::template get_function<type, N>(null_aware);
80
86
    }
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE10ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
78
355
    static typename Traits::BasePtr create(bool null_aware) {
79
355
        return Traits::template get_function<type, N>(null_aware);
80
355
    }
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE23ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
78
765
    static typename Traits::BasePtr create(bool null_aware) {
79
765
        return Traits::template get_function<type, N>(null_aware);
80
765
    }
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE28ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
78
104
    static typename Traits::BasePtr create(bool null_aware) {
79
104
        return Traits::template get_function<type, N>(null_aware);
80
104
    }
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE29ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
78
684
    static typename Traits::BasePtr create(bool null_aware) {
79
684
        return Traits::template get_function<type, N>(null_aware);
80
684
    }
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE30ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
78
115
    static typename Traits::BasePtr create(bool null_aware) {
79
115
        return Traits::template get_function<type, N>(null_aware);
80
115
    }
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE35ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
78
35
    static typename Traits::BasePtr create(bool null_aware) {
79
35
        return Traits::template get_function<type, N>(null_aware);
80
35
    }
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE36ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
78
13
    static typename Traits::BasePtr create(bool null_aware) {
79
13
        return Traits::template get_function<type, N>(null_aware);
80
13
    }
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE37ELm0EEEPNS_14MinMaxFuncBaseEb
Line
Count
Source
78
1
    static typename Traits::BasePtr create(bool null_aware) {
79
1
        return Traits::template get_function<type, N>(null_aware);
80
1
    }
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE2ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
78
239
    static typename Traits::BasePtr create(bool null_aware) {
79
239
        return Traits::template get_function<type, N>(null_aware);
80
239
    }
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE20ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
78
35
    static typename Traits::BasePtr create(bool null_aware) {
79
35
        return Traits::template get_function<type, N>(null_aware);
80
35
    }
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE3ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
78
571
    static typename Traits::BasePtr create(bool null_aware) {
79
571
        return Traits::template get_function<type, N>(null_aware);
80
571
    }
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE4ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
78
493
    static typename Traits::BasePtr create(bool null_aware) {
79
493
        return Traits::template get_function<type, N>(null_aware);
80
493
    }
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE5ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
78
9.84k
    static typename Traits::BasePtr create(bool null_aware) {
79
9.84k
        return Traits::template get_function<type, N>(null_aware);
80
9.84k
    }
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE6ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
78
3.40k
    static typename Traits::BasePtr create(bool null_aware) {
79
3.40k
        return Traits::template get_function<type, N>(null_aware);
80
3.40k
    }
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE7ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
78
193
    static typename Traits::BasePtr create(bool null_aware) {
79
193
        return Traits::template get_function<type, N>(null_aware);
80
193
    }
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE8ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
78
288
    static typename Traits::BasePtr create(bool null_aware) {
79
288
        return Traits::template get_function<type, N>(null_aware);
80
288
    }
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE9ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
78
4
    static typename Traits::BasePtr create(bool null_aware) {
79
4
        return Traits::template get_function<type, N>(null_aware);
80
4
    }
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE11ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
78
54
    static typename Traits::BasePtr create(bool null_aware) {
79
54
        return Traits::template get_function<type, N>(null_aware);
80
54
    }
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE12ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
78
60
    static typename Traits::BasePtr create(bool null_aware) {
79
60
        return Traits::template get_function<type, N>(null_aware);
80
60
    }
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE25ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
78
904
    static typename Traits::BasePtr create(bool null_aware) {
79
904
        return Traits::template get_function<type, N>(null_aware);
80
904
    }
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE26ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
78
980
    static typename Traits::BasePtr create(bool null_aware) {
79
980
        return Traits::template get_function<type, N>(null_aware);
80
980
    }
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE42ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
78
9
    static typename Traits::BasePtr create(bool null_aware) {
79
9
        return Traits::template get_function<type, N>(null_aware);
80
9
    }
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE15ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
78
97
    static typename Traits::BasePtr create(bool null_aware) {
79
97
        return Traits::template get_function<type, N>(null_aware);
80
97
    }
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE10ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
78
269
    static typename Traits::BasePtr create(bool null_aware) {
79
269
        return Traits::template get_function<type, N>(null_aware);
80
269
    }
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE23ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
78
722
    static typename Traits::BasePtr create(bool null_aware) {
79
722
        return Traits::template get_function<type, N>(null_aware);
80
722
    }
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE28ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
78
49
    static typename Traits::BasePtr create(bool null_aware) {
79
49
        return Traits::template get_function<type, N>(null_aware);
80
49
    }
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE29ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
78
470
    static typename Traits::BasePtr create(bool null_aware) {
79
470
        return Traits::template get_function<type, N>(null_aware);
80
470
    }
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE30ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
78
38
    static typename Traits::BasePtr create(bool null_aware) {
79
38
        return Traits::template get_function<type, N>(null_aware);
80
38
    }
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE35ELm0EEEPNS_19BloomFilterFuncBaseEb
Line
Count
Source
78
45
    static typename Traits::BasePtr create(bool null_aware) {
79
45
        return Traits::template get_function<type, N>(null_aware);
80
45
    }
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE36ELm0EEEPNS_19BloomFilterFuncBaseEb
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE37ELm0EEEPNS_19BloomFilterFuncBaseEb
81
};
82
83
#define APPLY_FOR_PRIMTYPE(M) \
84
3.50k
    M(TYPE_TINYINT)           \
85
3.50k
    M(TYPE_SMALLINT)          \
86
43.8k
    M(TYPE_INT)               \
87
43.8k
    M(TYPE_BIGINT)            \
88
11.7k
    M(TYPE_LARGEINT)          \
89
872
    M(TYPE_FLOAT)             \
90
872
    M(TYPE_DOUBLE)            \
91
82
    M(TYPE_DATE)              \
92
103
    M(TYPE_DATETIME)          \
93
2.89k
    M(TYPE_DATEV2)            \
94
8.06k
    M(TYPE_DATETIMEV2)        \
95
8.06k
    M(TYPE_TIMESTAMPTZ)       \
96
276
    M(TYPE_CHAR)              \
97
1.53k
    M(TYPE_VARCHAR)           \
98
2.21k
    M(TYPE_STRING)            \
99
2.21k
    M(TYPE_DECIMAL32)         \
100
1.76k
    M(TYPE_DECIMAL64)         \
101
1.76k
    M(TYPE_DECIMAL128I)       \
102
251
    M(TYPE_DECIMAL256)        \
103
145
    M(TYPE_IPV4)              \
104
58
    M(TYPE_IPV6)
105
106
template <class Traits, size_t N = 0>
107
81.4k
typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) {
108
81.4k
    using Creator = PredicateFunctionCreator<Traits>;
109
110
81.4k
    switch (type) {
111
690
    case TYPE_BOOLEAN: {
112
690
        return Creator::template create<TYPE_BOOLEAN, N>(null_aware);
113
0
    }
114
76
    case TYPE_DECIMALV2: {
115
76
        return Creator::template create<TYPE_DECIMALV2, N>(null_aware);
116
0
    }
117
0
#define M(NAME)                                               \
118
80.7k
    case NAME: {                                              \
119
80.7k
        return Creator::template create<NAME, N>(null_aware); \
120
80.7k
    }
121
80.7k
        APPLY_FOR_PRIMTYPE(M)
122
0
#undef M
123
0
    default:
124
0
        throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type));
125
81.4k
    }
126
127
0
    return nullptr;
128
81.4k
}
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm0EEENT_7BasePtrENS_13PrimitiveTypeEb
Line
Count
Source
107
31.8k
typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) {
108
31.8k
    using Creator = PredicateFunctionCreator<Traits>;
109
110
31.8k
    switch (type) {
111
225
    case TYPE_BOOLEAN: {
112
225
        return Creator::template create<TYPE_BOOLEAN, N>(null_aware);
113
0
    }
114
27
    case TYPE_DECIMALV2: {
115
27
        return Creator::template create<TYPE_DECIMALV2, N>(null_aware);
116
0
    }
117
0
#define M(NAME)                                               \
118
0
    case NAME: {                                              \
119
0
        return Creator::template create<NAME, N>(null_aware); \
120
0
    }
121
27
        APPLY_FOR_PRIMTYPE(M)
122
0
#undef M
123
0
    default:
124
0
        throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type));
125
31.8k
    }
126
127
0
    return nullptr;
128
31.8k
}
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm1EEENT_7BasePtrENS_13PrimitiveTypeEb
Line
Count
Source
107
481
typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) {
108
481
    using Creator = PredicateFunctionCreator<Traits>;
109
110
481
    switch (type) {
111
0
    case TYPE_BOOLEAN: {
112
0
        return Creator::template create<TYPE_BOOLEAN, N>(null_aware);
113
0
    }
114
0
    case TYPE_DECIMALV2: {
115
0
        return Creator::template create<TYPE_DECIMALV2, N>(null_aware);
116
0
    }
117
0
#define M(NAME)                                               \
118
0
    case NAME: {                                              \
119
0
        return Creator::template create<NAME, N>(null_aware); \
120
0
    }
121
0
        APPLY_FOR_PRIMTYPE(M)
122
0
#undef M
123
0
    default:
124
0
        throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type));
125
481
    }
126
127
0
    return nullptr;
128
481
}
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm2EEENT_7BasePtrENS_13PrimitiveTypeEb
Line
Count
Source
107
1.24k
typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) {
108
1.24k
    using Creator = PredicateFunctionCreator<Traits>;
109
110
1.24k
    switch (type) {
111
3
    case TYPE_BOOLEAN: {
112
3
        return Creator::template create<TYPE_BOOLEAN, N>(null_aware);
113
0
    }
114
0
    case TYPE_DECIMALV2: {
115
0
        return Creator::template create<TYPE_DECIMALV2, N>(null_aware);
116
0
    }
117
0
#define M(NAME)                                               \
118
0
    case NAME: {                                              \
119
0
        return Creator::template create<NAME, N>(null_aware); \
120
0
    }
121
0
        APPLY_FOR_PRIMTYPE(M)
122
0
#undef M
123
0
    default:
124
0
        throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type));
125
1.24k
    }
126
127
0
    return nullptr;
128
1.24k
}
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm3EEENT_7BasePtrENS_13PrimitiveTypeEb
Line
Count
Source
107
383
typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) {
108
383
    using Creator = PredicateFunctionCreator<Traits>;
109
110
383
    switch (type) {
111
0
    case TYPE_BOOLEAN: {
112
0
        return Creator::template create<TYPE_BOOLEAN, N>(null_aware);
113
0
    }
114
1
    case TYPE_DECIMALV2: {
115
1
        return Creator::template create<TYPE_DECIMALV2, N>(null_aware);
116
0
    }
117
0
#define M(NAME)                                               \
118
0
    case NAME: {                                              \
119
0
        return Creator::template create<NAME, N>(null_aware); \
120
0
    }
121
1
        APPLY_FOR_PRIMTYPE(M)
122
0
#undef M
123
0
    default:
124
0
        throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type));
125
383
    }
126
127
0
    return nullptr;
128
383
}
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm4EEENT_7BasePtrENS_13PrimitiveTypeEb
Line
Count
Source
107
65
typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) {
108
65
    using Creator = PredicateFunctionCreator<Traits>;
109
110
65
    switch (type) {
111
0
    case TYPE_BOOLEAN: {
112
0
        return Creator::template create<TYPE_BOOLEAN, N>(null_aware);
113
0
    }
114
0
    case TYPE_DECIMALV2: {
115
0
        return Creator::template create<TYPE_DECIMALV2, N>(null_aware);
116
0
    }
117
0
#define M(NAME)                                               \
118
0
    case NAME: {                                              \
119
0
        return Creator::template create<NAME, N>(null_aware); \
120
0
    }
121
0
        APPLY_FOR_PRIMTYPE(M)
122
0
#undef M
123
0
    default:
124
0
        throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type));
125
65
    }
126
127
0
    return nullptr;
128
65
}
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm5EEENT_7BasePtrENS_13PrimitiveTypeEb
Line
Count
Source
107
24
typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) {
108
24
    using Creator = PredicateFunctionCreator<Traits>;
109
110
24
    switch (type) {
111
0
    case TYPE_BOOLEAN: {
112
0
        return Creator::template create<TYPE_BOOLEAN, N>(null_aware);
113
0
    }
114
0
    case TYPE_DECIMALV2: {
115
0
        return Creator::template create<TYPE_DECIMALV2, N>(null_aware);
116
0
    }
117
0
#define M(NAME)                                               \
118
0
    case NAME: {                                              \
119
0
        return Creator::template create<NAME, N>(null_aware); \
120
0
    }
121
0
        APPLY_FOR_PRIMTYPE(M)
122
0
#undef M
123
0
    default:
124
0
        throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type));
125
24
    }
126
127
0
    return nullptr;
128
24
}
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm6EEENT_7BasePtrENS_13PrimitiveTypeEb
Line
Count
Source
107
10
typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) {
108
10
    using Creator = PredicateFunctionCreator<Traits>;
109
110
10
    switch (type) {
111
0
    case TYPE_BOOLEAN: {
112
0
        return Creator::template create<TYPE_BOOLEAN, N>(null_aware);
113
0
    }
114
0
    case TYPE_DECIMALV2: {
115
0
        return Creator::template create<TYPE_DECIMALV2, N>(null_aware);
116
0
    }
117
0
#define M(NAME)                                               \
118
0
    case NAME: {                                              \
119
0
        return Creator::template create<NAME, N>(null_aware); \
120
0
    }
121
0
        APPLY_FOR_PRIMTYPE(M)
122
0
#undef M
123
0
    default:
124
0
        throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type));
125
10
    }
126
127
0
    return nullptr;
128
10
}
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm7EEENT_7BasePtrENS_13PrimitiveTypeEb
Line
Count
Source
107
15
typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) {
108
15
    using Creator = PredicateFunctionCreator<Traits>;
109
110
15
    switch (type) {
111
0
    case TYPE_BOOLEAN: {
112
0
        return Creator::template create<TYPE_BOOLEAN, N>(null_aware);
113
0
    }
114
0
    case TYPE_DECIMALV2: {
115
0
        return Creator::template create<TYPE_DECIMALV2, N>(null_aware);
116
0
    }
117
0
#define M(NAME)                                               \
118
0
    case NAME: {                                              \
119
0
        return Creator::template create<NAME, N>(null_aware); \
120
0
    }
121
0
        APPLY_FOR_PRIMTYPE(M)
122
0
#undef M
123
0
    default:
124
0
        throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type));
125
15
    }
126
127
0
    return nullptr;
128
15
}
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm8EEENT_7BasePtrENS_13PrimitiveTypeEb
Line
Count
Source
107
10
typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) {
108
10
    using Creator = PredicateFunctionCreator<Traits>;
109
110
10
    switch (type) {
111
0
    case TYPE_BOOLEAN: {
112
0
        return Creator::template create<TYPE_BOOLEAN, N>(null_aware);
113
0
    }
114
0
    case TYPE_DECIMALV2: {
115
0
        return Creator::template create<TYPE_DECIMALV2, N>(null_aware);
116
0
    }
117
0
#define M(NAME)                                               \
118
0
    case NAME: {                                              \
119
0
        return Creator::template create<NAME, N>(null_aware); \
120
0
    }
121
0
        APPLY_FOR_PRIMTYPE(M)
122
0
#undef M
123
0
    default:
124
0
        throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type));
125
10
    }
126
127
0
    return nullptr;
128
10
}
_ZN5doris25create_predicate_functionINS_20MinmaxFunctionTraitsELm0EEENT_7BasePtrENS_13PrimitiveTypeEb
Line
Count
Source
107
28.6k
typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) {
108
28.6k
    using Creator = PredicateFunctionCreator<Traits>;
109
110
28.6k
    switch (type) {
111
223
    case TYPE_BOOLEAN: {
112
223
        return Creator::template create<TYPE_BOOLEAN, N>(null_aware);
113
0
    }
114
13
    case TYPE_DECIMALV2: {
115
13
        return Creator::template create<TYPE_DECIMALV2, N>(null_aware);
116
0
    }
117
0
#define M(NAME)                                               \
118
0
    case NAME: {                                              \
119
0
        return Creator::template create<NAME, N>(null_aware); \
120
0
    }
121
13
        APPLY_FOR_PRIMTYPE(M)
122
0
#undef M
123
0
    default:
124
0
        throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type));
125
28.6k
    }
126
127
0
    return nullptr;
128
28.6k
}
_ZN5doris25create_predicate_functionINS_17BloomFilterTraitsELm0EEENT_7BasePtrENS_13PrimitiveTypeEb
Line
Count
Source
107
18.7k
typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) {
108
18.7k
    using Creator = PredicateFunctionCreator<Traits>;
109
110
18.7k
    switch (type) {
111
239
    case TYPE_BOOLEAN: {
112
239
        return Creator::template create<TYPE_BOOLEAN, N>(null_aware);
113
0
    }
114
35
    case TYPE_DECIMALV2: {
115
35
        return Creator::template create<TYPE_DECIMALV2, N>(null_aware);
116
0
    }
117
0
#define M(NAME)                                               \
118
0
    case NAME: {                                              \
119
0
        return Creator::template create<NAME, N>(null_aware); \
120
0
    }
121
35
        APPLY_FOR_PRIMTYPE(M)
122
0
#undef M
123
0
    default:
124
0
        throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type));
125
18.7k
    }
126
127
0
    return nullptr;
128
18.7k
}
129
130
28.7k
inline auto create_minmax_filter(PrimitiveType type, bool null_aware) {
131
28.7k
    return create_predicate_function<MinmaxFunctionTraits>(type, null_aware);
132
28.7k
}
133
134
template <size_t N = 0>
135
34.1k
inline auto create_set(PrimitiveType type, bool null_aware) {
136
34.1k
    return create_predicate_function<HybridSetTraits, N>(type, null_aware);
137
34.1k
}
_ZN5doris10create_setILm0EEEDaNS_13PrimitiveTypeEb
Line
Count
Source
135
31.8k
inline auto create_set(PrimitiveType type, bool null_aware) {
136
31.8k
    return create_predicate_function<HybridSetTraits, N>(type, null_aware);
137
31.8k
}
_ZN5doris10create_setILm1EEEDaNS_13PrimitiveTypeEb
Line
Count
Source
135
481
inline auto create_set(PrimitiveType type, bool null_aware) {
136
481
    return create_predicate_function<HybridSetTraits, N>(type, null_aware);
137
481
}
_ZN5doris10create_setILm2EEEDaNS_13PrimitiveTypeEb
Line
Count
Source
135
1.24k
inline auto create_set(PrimitiveType type, bool null_aware) {
136
1.24k
    return create_predicate_function<HybridSetTraits, N>(type, null_aware);
137
1.24k
}
_ZN5doris10create_setILm3EEEDaNS_13PrimitiveTypeEb
Line
Count
Source
135
383
inline auto create_set(PrimitiveType type, bool null_aware) {
136
383
    return create_predicate_function<HybridSetTraits, N>(type, null_aware);
137
383
}
_ZN5doris10create_setILm4EEEDaNS_13PrimitiveTypeEb
Line
Count
Source
135
65
inline auto create_set(PrimitiveType type, bool null_aware) {
136
65
    return create_predicate_function<HybridSetTraits, N>(type, null_aware);
137
65
}
_ZN5doris10create_setILm5EEEDaNS_13PrimitiveTypeEb
Line
Count
Source
135
24
inline auto create_set(PrimitiveType type, bool null_aware) {
136
24
    return create_predicate_function<HybridSetTraits, N>(type, null_aware);
137
24
}
_ZN5doris10create_setILm6EEEDaNS_13PrimitiveTypeEb
Line
Count
Source
135
10
inline auto create_set(PrimitiveType type, bool null_aware) {
136
10
    return create_predicate_function<HybridSetTraits, N>(type, null_aware);
137
10
}
_ZN5doris10create_setILm7EEEDaNS_13PrimitiveTypeEb
Line
Count
Source
135
15
inline auto create_set(PrimitiveType type, bool null_aware) {
136
15
    return create_predicate_function<HybridSetTraits, N>(type, null_aware);
137
15
}
_ZN5doris10create_setILm8EEEDaNS_13PrimitiveTypeEb
Line
Count
Source
135
10
inline auto create_set(PrimitiveType type, bool null_aware) {
136
10
    return create_predicate_function<HybridSetTraits, N>(type, null_aware);
137
10
}
138
139
2.37k
inline auto create_set(PrimitiveType type, size_t size, bool null_aware) {
140
2.37k
    if (size == 0) {
141
12
        return create_set<0>(type, null_aware);
142
2.36k
    } else if (size == 1) {
143
479
        return create_set<1>(type, null_aware);
144
1.88k
    } else if (size == 2) {
145
1.24k
        return create_set<2>(type, null_aware);
146
1.24k
    } else if (size == 3) {
147
363
        return create_set<3>(type, null_aware);
148
363
    } else if (size == 4) {
149
63
        return create_set<4>(type, null_aware);
150
216
    } else if (size == 5) {
151
22
        return create_set<5>(type, null_aware);
152
194
    } else if (size == 6) {
153
8
        return create_set<6>(type, null_aware);
154
186
    } else if (size == 7) {
155
13
        return create_set<7>(type, null_aware);
156
173
    } else if (size == FIXED_CONTAINER_MAX_SIZE) {
157
7
        return create_set<FIXED_CONTAINER_MAX_SIZE>(type, null_aware);
158
166
    } else {
159
166
        return create_set(type, null_aware);
160
166
    }
161
2.37k
}
162
163
519
inline HybridSetBase* create_string_value_set(bool null_aware) {
164
519
    return new StringValueSet(null_aware);
165
519
}
166
167
519
inline HybridSetBase* create_string_value_set(size_t size, bool null_aware) {
168
519
    return create_string_value_set(null_aware);
169
519
}
170
171
18.7k
inline auto create_bloom_filter(PrimitiveType type, bool null_aware) {
172
18.7k
    return create_predicate_function<BloomFilterTraits>(type, null_aware);
173
18.7k
}
174
175
template <PrimitiveType PT>
176
std::shared_ptr<const ColumnPredicate> create_olap_column_predicate(
177
        uint32_t column_id, const std::shared_ptr<BloomFilterFuncBase>& filter, const TabletColumn*,
178
        bool null_aware) {
179
    std::shared_ptr<BloomFilterFuncBase> filter_olap;
180
    filter_olap.reset(create_bloom_filter(PT, null_aware));
181
    filter_olap->light_copy(filter.get());
182
    // create a new filter to match the input filter and PT. For example, filter may be varchar, but PT is char
183
    return BloomFilterColumnPredicate<PT>::create_shared(column_id, filter_olap);
184
}
185
186
template <PrimitiveType PT>
187
std::shared_ptr<const ColumnPredicate> create_olap_column_predicate(
188
        uint32_t column_id, const std::shared_ptr<HybridSetBase>& filter,
189
        const TabletColumn* column, bool) {
190
    return create_in_list_predicate<PT, PredicateType::IN_LIST>(column_id, filter,
191
                                                                column->length());
192
}
193
194
template <PrimitiveType PT>
195
std::shared_ptr<ColumnPredicate> create_olap_column_predicate(
196
        uint32_t column_id, const std::shared_ptr<FunctionFilter>& filter,
197
249
        const TabletColumn* column, bool) {
198
    // currently only support like predicate
199
249
    if constexpr (PT == TYPE_CHAR || PT == TYPE_VARCHAR || PT == TYPE_STRING) {
200
249
        return LikeColumnPredicate::create_shared(filter->_opposite, column_id, column->name(),
201
249
                                                  filter->_fn_ctx, filter->_string_param);
202
249
    }
203
0
    throw Exception(ErrorCode::INTERNAL_ERROR, "function filter do not support type {}", PT);
204
249
}
Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE3EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb
Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE4EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb
Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE5EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb
Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE6EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb
Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE7EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb
Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE8EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb
Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE9EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb
Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE11EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb
Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE12EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb
Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE25EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb
Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE26EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb
Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE42EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb
Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE15EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb
_ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE10EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb
Line
Count
Source
197
192
        const TabletColumn* column, bool) {
198
    // currently only support like predicate
199
192
    if constexpr (PT == TYPE_CHAR || PT == TYPE_VARCHAR || PT == TYPE_STRING) {
200
192
        return LikeColumnPredicate::create_shared(filter->_opposite, column_id, column->name(),
201
192
                                                  filter->_fn_ctx, filter->_string_param);
202
192
    }
203
0
    throw Exception(ErrorCode::INTERNAL_ERROR, "function filter do not support type {}", PT);
204
192
}
_ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE23EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb
Line
Count
Source
197
57
        const TabletColumn* column, bool) {
198
    // currently only support like predicate
199
57
    if constexpr (PT == TYPE_CHAR || PT == TYPE_VARCHAR || PT == TYPE_STRING) {
200
57
        return LikeColumnPredicate::create_shared(filter->_opposite, column_id, column->name(),
201
57
                                                  filter->_fn_ctx, filter->_string_param);
202
57
    }
203
0
    throw Exception(ErrorCode::INTERNAL_ERROR, "function filter do not support type {}", PT);
204
57
}
Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE28EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb
Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE29EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb
Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE30EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb
Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE35EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb
Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE36EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb
Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE37EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb
Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE20EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb
Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE2EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb
205
206
template <typename T>
207
std::shared_ptr<ColumnPredicate> create_column_predicate(uint32_t column_id,
208
                                                         const std::shared_ptr<T>& filter,
209
                                                         FieldType type, const TabletColumn* column,
210
250
                                                         bool null_aware = false) {
211
250
    switch (type) {
212
0
#define M(NAME)                                                                           \
213
250
    case FieldType::OLAP_FIELD_##NAME: {                                                  \
214
250
        return create_olap_column_predicate<NAME>(column_id, filter, column, null_aware); \
215
250
    }
216
250
        APPLY_FOR_PRIMTYPE(M)
217
0
#undef M
218
0
    case FieldType::OLAP_FIELD_TYPE_DECIMAL: {
219
0
        return create_olap_column_predicate<TYPE_DECIMALV2>(column_id, filter, column, null_aware);
220
0
    }
221
0
    case FieldType::OLAP_FIELD_TYPE_BOOL: {
222
0
        return create_olap_column_predicate<TYPE_BOOLEAN>(column_id, filter, column, null_aware);
223
0
    }
224
0
    default:
225
0
        return nullptr;
226
250
    }
227
250
}
228
229
} // namespace doris