mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-29 20:25:56 +00:00
fix(ingest): glue - fix profiling config option for column_count (#5178)
This commit is contained in:
parent
63b673bd8c
commit
f4674c3e78
@ -716,7 +716,7 @@ class GlueSource(Source):
|
||||
dataset_profile.rowCount = int(
|
||||
float(table_stats[self.source_config.profiling.row_count])
|
||||
)
|
||||
if self.source_config.profiling.row_count in table_stats:
|
||||
if self.source_config.profiling.column_count in table_stats:
|
||||
dataset_profile.columnCount = int(
|
||||
float(table_stats[self.source_config.profiling.column_count])
|
||||
)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user