HappenLee commented on code in PR #30667:
URL: https://github.com/apache/doris/pull/30667#discussion_r1477246864
##########
be/src/vec/functions/function_string.h:
##########
@@ -2740,6 +2741,53 @@ class FunctionStringParseUrl : public IFunction {
}
};
+class FunctionUrlDecode : public IFunction {
+public:
+ static constexpr auto name = "url_decode";
+ static FunctionPtr create() { return
std::make_shared<FunctionUrlDecode>(); }
+ String get_name() const override { return name; }
+ size_t get_number_of_arguments() const override { return 1; }
+ bool is_variadic() const override { return false; }
Review Comment:
no need override, remove
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]