|
| 1 | + |
| 2 | +# Changelist for MADlib version 1.1 to 1.3 |
| 3 | + |
| 4 | +# This file contains all changes that were introduced in a new version of |
| 5 | +# MADlib. This changelist is used by the upgrade script to detect what objects |
| 6 | +# should be upgraded (while retaining all other objects from the previous version) |
| 7 | + |
| 8 | +# New modules (actually .sql_in files) added in upgrade version |
| 9 | +# For these files the sql_in code is retained as is with the functions in the |
| 10 | +# file installed on the upgrade version. All other files (that don't have |
| 11 | +# updates), are cleaned up to remove object replacements |
| 12 | +new module: |
| 13 | + arima: |
| 14 | + arima_forecast: |
| 15 | + |
| 16 | + |
| 17 | +# Changes in the types (UDT) including removal and modification |
| 18 | +udt: |
| 19 | + __logregr_result: |
| 20 | + linregr_result: |
| 21 | + |
| 22 | +# List of the UDF changes that affect the user externally. This includes change |
| 23 | +# in function name, change in argument order or argument types, and removal of |
| 24 | +# the function. In each case, the original function is as good as removed and a |
| 25 | +# new function is created. In such cases, we should abort the upgrade if there |
| 26 | +# are user views dependent on this function, since the original function will |
| 27 | +# not be present in the upgraded version. |
| 28 | +udf: |
| 29 | + # linear regression: 'num_processed' added in 'linregr_result' |
| 30 | + - linregr_final: |
| 31 | + rettype: schema_madlib.linregr_result |
| 32 | + argument: schema_madlib.bytea8 |
| 33 | + - linregr_merge_states: |
| 34 | + rettype: schema_madlib.bytea8 |
| 35 | + argument: schema_madlib.bytea8, schema_madlib.bytea8 |
| 36 | + - linregr_transition: |
| 37 | + rettype: schema_madlib.bytea8 |
| 38 | + argument: schema_madlib.bytea8, double precision, double precision[] |
| 39 | + |
| 40 | + # logistic regression: 'num_processed' added in '__logregr_result' |
| 41 | + - __logregr_cg_result: |
| 42 | + rettype: schema_madlib.__logregr_result |
| 43 | + argument: double precision[] |
| 44 | + |
| 45 | + - __logregr_irls_result: |
| 46 | + rettype: schema_madlib.__logregr_result |
| 47 | + argument: double precision[] |
| 48 | + |
| 49 | + - __logregr_igd_result: |
| 50 | + rettype: schema_madlib.__logregr_result |
| 51 | + argument: double precision[] |
| 52 | + |
| 53 | +# Changes to aggregates (UDA) including removal and modification |
| 54 | +# Overloaded functions should be mentioned separately |
| 55 | +uda: |
| 56 | + - linregr: |
| 57 | + rettype: schema_madlib.linregr_result |
| 58 | + argument: double precision, double precision[] |
| 59 | + |
| 60 | +# Cast operators (UDC) updated/added in v1.1 |
| 61 | +udc: |
0 commit comments