Skip to content

Commit

Permalink
fix(ingest): glue - fix profiling config option for column_count (#5178)
Browse files Browse the repository at this point in the history
  • Loading branch information
kangseonghyun authored Jun 16, 2022
1 parent 63b673b commit f4674c3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -716,7 +716,7 @@ def _create_profile_mcp(
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])
)
Expand Down

0 comments on commit f4674c3

Please sign in to comment.