davidradl commented on code in PR #24773: URL: https://github.com/apache/flink/pull/24773#discussion_r1617259220
########## flink-python/pyflink/table/expression.py: ########## @@ -1273,6 +1273,23 @@ def locate(self, s: Union[str, 'Expression[str]'], else: return _ternary_op("locate")(self, s, pos) + def url_decode(self) -> 'Expression[str]': + """ + Decodes a given string in 'application/x-www-form-urlencoded' format using the UTF-8 + encoding scheme. If input is null, or there is an issue with the decoding process(such Review Comment: nit: input -> the input -- 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: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org