acryl-datahub 0.15.0.5rc4__py3-none-any.whl → 15.0.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of acryl-datahub might be problematic. Click here for more details.
- {acryl_datahub-0.15.0.5rc4.dist-info → acryl_datahub-15.0.4.dist-info}/METADATA +2385 -2388
- {acryl_datahub-0.15.0.5rc4.dist-info → acryl_datahub-15.0.4.dist-info}/RECORD +28 -30
- datahub/__init__.py +25 -1
- datahub/cli/check_cli.py +1 -1
- datahub/cli/cli_utils.py +3 -3
- datahub/cli/ingest_cli.py +2 -2
- datahub/emitter/rest_emitter.py +1 -1
- datahub/entrypoints.py +5 -5
- datahub/ingestion/api/registry.py +2 -4
- datahub/ingestion/reporting/datahub_ingestion_run_summary_provider.py +1 -1
- datahub/ingestion/run/connection.py +1 -1
- datahub/ingestion/run/pipeline.py +3 -3
- datahub/ingestion/source/aws/glue.py +5 -13
- datahub/ingestion/source/looker/lookml_config.py +1 -4
- datahub/ingestion/source/looker/lookml_source.py +0 -56
- datahub/ingestion/source/slack/slack.py +0 -6
- datahub/ingestion/source/snowflake/snowflake_schema_gen.py +7 -17
- datahub/ingestion/source/sql/clickhouse.py +43 -5
- datahub/ingestion/source/unity/proxy.py +2 -2
- datahub/metadata/_schema_classes.py +400 -400
- datahub/metadata/_urns/urn_defs.py +1665 -1665
- datahub/metadata/schema.avsc +15276 -15634
- datahub/telemetry/telemetry.py +4 -4
- datahub/testing/check_imports.py +0 -28
- datahub/upgrade/upgrade.py +4 -4
- acryl_datahub-0.15.0.5rc4.dist-info/LICENSE +0 -202
- datahub/_version.py +0 -13
- {acryl_datahub-0.15.0.5rc4.dist-info → acryl_datahub-15.0.4.dist-info}/WHEEL +0 -0
- {acryl_datahub-0.15.0.5rc4.dist-info → acryl_datahub-15.0.4.dist-info}/entry_points.txt +0 -0
- {acryl_datahub-0.15.0.5rc4.dist-info → acryl_datahub-15.0.4.dist-info}/top_level.txt +0 -0
|
@@ -26,7 +26,7 @@ from databricks.sdk.service.sql import (
|
|
|
26
26
|
)
|
|
27
27
|
from databricks.sdk.service.workspace import ObjectType
|
|
28
28
|
|
|
29
|
-
|
|
29
|
+
import datahub
|
|
30
30
|
from datahub.emitter.mce_builder import parse_ts_millis
|
|
31
31
|
from datahub.ingestion.source.unity.hive_metastore_proxy import HiveMetastoreProxy
|
|
32
32
|
from datahub.ingestion.source.unity.proxy_profiling import (
|
|
@@ -103,7 +103,7 @@ class UnityCatalogApiProxy(UnityCatalogProxyProfilingMixin):
|
|
|
103
103
|
host=workspace_url,
|
|
104
104
|
token=personal_access_token,
|
|
105
105
|
product="datahub",
|
|
106
|
-
product_version=nice_version_name(),
|
|
106
|
+
product_version=datahub.nice_version_name(),
|
|
107
107
|
)
|
|
108
108
|
self.warehouse_id = warehouse_id or ""
|
|
109
109
|
self.report = report
|