Skip to content

Commit

Permalink
added fix
Browse files Browse the repository at this point in the history
  • Loading branch information
souravg-db2 committed Dec 21, 2023
1 parent 6169b97 commit 3387bee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions discoverx/scanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,9 +311,9 @@ def _rule_matching_sql(self, table_info: TableInfo):

sql = f"""
SELECT
'{table_info.catalog}' as table_catalog,
'{table_info.schema}' as table_schema,
'{table_info.table}' as table_name,
`{table_info.catalog}` as table_catalog,
`{table_info.schema}` as table_schema,
`{table_info.table}` as table_name,
column_name,
class_name,
(sum(value) / count(value)) as score
Expand Down

0 comments on commit 3387bee

Please sign in to comment.