diff --git a/src/test/regress/citus_tests/upgrade/citus_upgrade_test.py b/src/test/regress/citus_tests/upgrade/citus_upgrade_test.py index 0ae0ac387..c73ea097c 100755 --- a/src/test/regress/citus_tests/upgrade/citus_upgrade_test.py +++ b/src/test/regress/citus_tests/upgrade/citus_upgrade_test.py @@ -184,7 +184,9 @@ def find_compatible_udf_signature(full_args, return_type, post_signatures): post_args_list = [ arg.strip() for arg in post_full_args.split(",") if arg.strip() ] - """ Here check if the function signatures are compatible, they are compatible if: post_args_list has all the arguments of pre_args_list in the same order, but can have additional arguments with default values """ + """ Here check if the function signatures are compatible, they are compatible if: + post_args_list has all the arguments of pre_args_list in the same order, but can have + additional arguments with default values """ pre_index = 0 post_index = 0 compatible = True