We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 651998d commit 19f104aCopy full SHA for 19f104a
metadata-ingestion/src/datahub/ingestion/source/aws/glue.py
@@ -852,7 +852,7 @@ def get_profile_if_enabled(
852
partition_keys = [k["Name"] for k in partition_keys]
853
854
for p in partitions:
855
- table_stats = p["Parameters"]
+ table_stats = p.get("Parameters", {})
856
column_stats = p["StorageDescriptor"]["Columns"]
857
858
# only support single partition key
0 commit comments