The original design asked to return aliases as comma-separated list. However, the current implementation pretends to return type `VARCHAR` in endpoints * [registered-models/get-latest-versions](https://mlflow.org/docs/latest/api_reference/rest-api.html#get-latest-modelversions) * Source: [MODEL_VERSION_COLUMNS](https://github.com/exasol/mlflow-plugin/blob/main/exasol/mlflow_plugin/rest_api/endpoints/model_versions.py#L19) is used in * `MODEL_VERSIONS_GET` * `MODEL_VERSIONS_SEARCH` * `REGISTERED_MODELS_GET_LATEST_VERSIONS` Proposal: * Add UDF `GET_MODEL_VERSION_ALIASES` * Output columns `name`, `version`, `alias` * Look at [model-versions/search](https://mlflow.org/docs/latest/api_reference/rest-api.html#search-modelversions) More elements requiring a strategy to be defined * endpoint [registered-models/get-latest-versions](https://mlflow.org/docs/latest/api_reference/rest-api.html#get-latest-modelversions) * model_params * model_metrics * [endpoint runs/search](https://mlflow.org/docs/latest/api_reference/rest-api.html#search-runs) * data.metrics * data.params
The original design asked to return aliases as comma-separated list.
However, the current implementation pretends to return type
VARCHARin endpointsMODEL_VERSIONS_GETMODEL_VERSIONS_SEARCHREGISTERED_MODELS_GET_LATEST_VERSIONSProposal:
GET_MODEL_VERSION_ALIASESname,version,aliasMore elements requiring a strategy to be defined