This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch dev-1.1.2 in repository https://gitbox.apache.org/repos/asf/doris.git
commit 1cde8cd81985f4a519541c76821aa95d2d98b5a2 Author: starocean999 <40539150+starocean...@users.noreply.github.com> AuthorDate: Tue Jul 26 17:55:06 2022 +0800 [FIX]string pad function should be always nullable for both string and varchar type (#11196) --- gensrc/script/doris_builtins_functions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gensrc/script/doris_builtins_functions.py b/gensrc/script/doris_builtins_functions.py index 0a3d138b63..2c44b50737 100755 --- a/gensrc/script/doris_builtins_functions.py +++ b/gensrc/script/doris_builtins_functions.py @@ -976,10 +976,10 @@ visible_functions = [ '15FunctionContextERKNS1_9StringValERKNS1_6IntValE', '', '', 'vec', ''], [['lpad'], 'STRING', ['STRING', 'INT', 'STRING'], '_ZN5doris15StringFunctions4lpadEPN9doris_udf' - '15FunctionContextERKNS1_9StringValERKNS1_6IntValES6_', '', '', 'vec', ''], + '15FunctionContextERKNS1_9StringValERKNS1_6IntValES6_', '', '', 'vec', 'ALWAYS_NULLABLE'], [['rpad'], 'STRING', ['STRING', 'INT', 'STRING'], '_ZN5doris15StringFunctions4rpadEPN9doris_udf' - '15FunctionContextERKNS1_9StringValERKNS1_6IntValES6_', '', '', 'vec', ''], + '15FunctionContextERKNS1_9StringValERKNS1_6IntValES6_', '', '', 'vec', 'ALWAYS_NULLABLE'], [['append_trailing_char_if_absent'], 'STRING', ['STRING', 'STRING'], '_ZN5doris15StringFunctions30append_trailing_char_if_absentEPN9doris_udf15FunctionContextERKNS1_9StringValES6_', '', '', 'vec', 'ALWAYS_NULLABLE'], --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org