be/src/exprs/function/function_ignore.cpp
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 | | #include "core/data_type/data_type_number.h" |
19 | | #include "exprs/function/function.h" |
20 | | #include "exprs/function/simple_function_factory.h" |
21 | | |
22 | | namespace doris { |
23 | | |
24 | | class FunctionIgnore : public IFunction { |
25 | | public: |
26 | | static constexpr auto name = "ignore"; |
27 | 0 | String get_name() const override { return name; } |
28 | | |
29 | 10 | static FunctionPtr create() { return std::make_shared<FunctionIgnore>(); } |
30 | 1 | DataTypePtr get_return_type_impl(const DataTypes& arguments) const override { |
31 | 1 | return std::make_shared<DataTypeUInt8>(); |
32 | 1 | } |
33 | | |
34 | 2 | bool is_variadic() const override { return true; } |
35 | 0 | size_t get_number_of_arguments() const override { return 0; } |
36 | 2 | bool use_default_implementation_for_nulls() const override { return false; } |
37 | | |
38 | | Status execute_impl(FunctionContext* context, Block& block, const ColumnNumbers& arguments, |
39 | 1 | uint32_t result, size_t input_rows_count) const override { |
40 | 1 | ColumnPtr col = ColumnBool::create(1, false); |
41 | 1 | block.replace_by_position(result, ColumnConst::create(col, input_rows_count)); |
42 | 1 | return Status::OK(); |
43 | 1 | } |
44 | | }; |
45 | | |
46 | 8 | void register_function_ignore(SimpleFunctionFactory& factory) { |
47 | 8 | factory.register_function<FunctionIgnore>(); |
48 | 8 | } |
49 | | } // namespace doris |