acryl-datahub 1.0.0rc9__py3-none-any.whl → 1.0.0rc11__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-1.0.0rc9.dist-info → acryl_datahub-1.0.0rc11.dist-info}/METADATA +2445 -2446
- {acryl_datahub-1.0.0rc9.dist-info → acryl_datahub-1.0.0rc11.dist-info}/RECORD +36 -35
- datahub/_version.py +1 -1
- datahub/api/entities/common/serialized_value.py +4 -3
- datahub/emitter/mce_builder.py +28 -13
- datahub/ingestion/source/common/subtypes.py +7 -0
- datahub/ingestion/source/iceberg/iceberg_common.py +40 -1
- datahub/ingestion/source/identity/okta.py +22 -0
- datahub/ingestion/source/metabase.py +3 -3
- datahub/ingestion/source/metadata/business_glossary.py +45 -3
- datahub/ingestion/source/mode.py +1 -1
- datahub/ingestion/source/redshift/config.py +4 -0
- datahub/ingestion/source/redshift/datashares.py +236 -0
- datahub/ingestion/source/redshift/lineage.py +6 -2
- datahub/ingestion/source/redshift/lineage_v2.py +7 -4
- datahub/ingestion/source/redshift/profile.py +1 -1
- datahub/ingestion/source/redshift/query.py +125 -33
- datahub/ingestion/source/redshift/redshift.py +41 -72
- datahub/ingestion/source/redshift/redshift_schema.py +166 -6
- datahub/ingestion/source/redshift/report.py +3 -0
- datahub/ingestion/source/sql/mssql/job_models.py +29 -0
- datahub/ingestion/source/sql/mssql/source.py +10 -4
- datahub/ingestion/source/sql/oracle.py +93 -63
- datahub/metadata/_schema_classes.py +5 -5
- datahub/metadata/_urns/urn_defs.py +24 -0
- datahub/metadata/schema.avsc +2 -1
- datahub/metadata/schemas/DomainKey.avsc +2 -1
- datahub/metadata/schemas/GlossaryNodeKey.avsc +2 -1
- datahub/metadata/schemas/MLModelDeploymentKey.avsc +2 -1
- datahub/metadata/schemas/MLModelGroupKey.avsc +2 -1
- datahub/metadata/schemas/MLModelKey.avsc +2 -1
- datahub/sql_parsing/sql_parsing_common.py +7 -0
- {acryl_datahub-1.0.0rc9.dist-info → acryl_datahub-1.0.0rc11.dist-info}/LICENSE +0 -0
- {acryl_datahub-1.0.0rc9.dist-info → acryl_datahub-1.0.0rc11.dist-info}/WHEEL +0 -0
- {acryl_datahub-1.0.0rc9.dist-info → acryl_datahub-1.0.0rc11.dist-info}/entry_points.txt +0 -0
- {acryl_datahub-1.0.0rc9.dist-info → acryl_datahub-1.0.0rc11.dist-info}/top_level.txt +0 -0
|
@@ -24,12 +24,19 @@ DIALECTS_WITH_CASE_INSENSITIVE_COLS = {
|
|
|
24
24
|
# For SQL server, the default collation rules mean that all identifiers (schema, table, column names)
|
|
25
25
|
# are case preserving but case insensitive.
|
|
26
26
|
"mssql",
|
|
27
|
+
# Oracle automatically converts unquoted identifiers to uppercase.
|
|
28
|
+
# https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlrf/Database-Object-Names-and-Qualifiers.html#GUID-3C59E44A-5140-4BCA-B9E1-3039C8050C49
|
|
29
|
+
# In our Oracle connector, we then normalize column names to lowercase. This behavior
|
|
30
|
+
# actually comes from the underlying Oracle sqlalchemy dialect.
|
|
31
|
+
# https://github.com/sqlalchemy/sqlalchemy/blob/d9b4d8ff3aae504402d324f3ebf0b8faff78f5dc/lib/sqlalchemy/dialects/oracle/base.py#L2579
|
|
32
|
+
"oracle",
|
|
27
33
|
}
|
|
28
34
|
DIALECTS_WITH_DEFAULT_UPPERCASE_COLS = {
|
|
29
35
|
# In some dialects, column identifiers are effectively case insensitive
|
|
30
36
|
# because they are automatically converted to uppercase. Most other systems
|
|
31
37
|
# automatically lowercase unquoted identifiers.
|
|
32
38
|
"snowflake",
|
|
39
|
+
"oracle",
|
|
33
40
|
}
|
|
34
41
|
assert DIALECTS_WITH_DEFAULT_UPPERCASE_COLS.issubset(
|
|
35
42
|
DIALECTS_WITH_CASE_INSENSITIVE_COLS
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|