aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Functions/array/arrayAll.cpp
blob: b3b0413f3bee7890a4a861415e73bdbf76864fc4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#include <Functions/array/arrayAll.h>
#include <Functions/FunctionFactory.h>

namespace DB
{

namespace ErrorCodes
{
    extern const int ILLEGAL_COLUMN;
}

ColumnPtr ArrayAllImpl::execute(const ColumnArray & array, ColumnPtr mapped)
{
    const ColumnUInt8 * column_filter = typeid_cast<const ColumnUInt8 *>(&*mapped);

    if (!column_filter)
    {
        const auto * column_filter_const = checkAndGetColumnConst<ColumnUInt8>(&*mapped);

        if (!column_filter_const)
            throw Exception(ErrorCodes::ILLEGAL_COLUMN, "Unexpected type of filter column");

        if (column_filter_const->getValue<UInt8>())
            return DataTypeUInt8().createColumnConst(array.size(), 1u);
        else
        {
            const IColumn::Offsets & offsets = array.getOffsets();
            auto out_column = ColumnUInt8::create(offsets.size());
            ColumnUInt8::Container & out_all = out_column->getData();

            size_t pos = 0;
            for (size_t i = 0; i < offsets.size(); ++i)
            {
                out_all[i] = offsets[i] == pos;
                pos = offsets[i];
            }

            return out_column;
        }
    }

    const IColumn::Filter & filter = column_filter->getData();
    const IColumn::Offsets & offsets = array.getOffsets();
    auto out_column = ColumnUInt8::create(offsets.size());
    ColumnUInt8::Container & out_all = out_column->getData();

    size_t pos = 0;
    for (size_t i = 0; i < offsets.size(); ++i)
    {
        UInt8 all = 1;
        for (; pos < offsets[i]; ++pos)
        {
            if (!filter[pos])
            {
                all = 0;
                pos = offsets[i];
                break;
            }
        }
        out_all[i] = all;
    }

    return out_column;
}

REGISTER_FUNCTION(ArrayAll)
{
    factory.registerFunction<FunctionArrayAll>();
}

}