Github user orhankislal commented on a diff in the pull request: https://github.com/apache/madlib/pull/318#discussion_r216567704 --- Diff: src/madpack/diff_udf.sql --- @@ -142,9 +142,12 @@ DROP TABLE IF EXISTS functions_madlib_new_version; SELECT get_functions('madlib_old_vers'); SELECT + type, --'\t-' || name || ':' || '\n\t\t-rettype: ' || retype || '\n\t\t-argument: ' || argtypes - ' - ' || name || ':' || '\n rettype: ' || retype || '\n argument: ' || argtypes AS "Dropped UDFs" - , type + ' - ' || name || ':' AS "Dropped UDF part1", --- End diff -- `rettype` was not removed, I just changed the column names to `Dropped UDF part1` format so that I can easily parse them. The newline characters were just complicating the output for no reason.
---