Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
liugddx committed Feb 4, 2024
1 parent 487519c commit 0b09df9
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions be/src/vec/functions/function_string.h
Original file line number Diff line number Diff line change
Expand Up @@ -2757,7 +2757,6 @@ class FunctionUrlDecode : public IFunction {

const ColumnNumbers& arguments, size_t result,
size_t input_rows_count) const override {

auto res = ColumnString::create();
auto& res_offsets = res->get_offsets();
auto& res_chars = res->get_chars();
Expand All @@ -2772,7 +2771,6 @@ class FunctionUrlDecode : public IFunction {
}

for (size_t i = 0; i < input_rows_count; ++i) {

auto source = url_col->get_data_at(i);
StringRef url_val(const_cast<char*>(source.data), source.size);

Expand Down

0 comments on commit 0b09df9

Please sign in to comment.