diff --git a/metadata-ingestion/src/datahub/ingestion/source/source_registry.py b/metadata-ingestion/src/datahub/ingestion/source/source_registry.py index 08c2ca4e2f8fdc..185a8be11a580e 100644 --- a/metadata-ingestion/src/datahub/ingestion/source/source_registry.py +++ b/metadata-ingestion/src/datahub/ingestion/source/source_registry.py @@ -17,3 +17,11 @@ UserWarning("source type snowflake-beta is deprecated, use snowflake instead") ), ) + +# The MSSQL source has two possible sets of dependencies. We alias +# the second to the first so that we maintain the 1:1 mapping between +# source type and pip extra. +source_registry.register_alias( + "mssql-odbc", + "mssql", +)