Skip to content

Commit

Permalink
fix arg size
Browse files Browse the repository at this point in the history
  • Loading branch information
liulijia committed Sep 19, 2024
1 parent 4d2187c commit 847be8d
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 @@ -1630,7 +1630,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 847be8d

Please sign in to comment.