Skip to content

Commit

Permalink
fix arg num
Browse files Browse the repository at this point in the history
  • Loading branch information
liutang123 committed Sep 19, 2024
1 parent dc18098 commit c668be6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/vec/functions/function_jsonb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1802,7 +1802,7 @@ class FunctionJsonSearch : public IFunction {

String get_name() const override { return name; }
bool is_variadic() const override { return false; }
size_t get_number_of_arguments() const override { return 0; }
size_t get_number_of_arguments() const override { return 3; }

DataTypePtr get_return_type_impl(const DataTypes& arguments) const override {
return make_nullable(std::make_shared<DataTypeJsonb>());
Expand Down

0 comments on commit c668be6

Please sign in to comment.