Skip to content

Commit 852bdf9

Browse files
committed
get_low_cardinality_indices: add debug print()
1 parent 6aa79be commit 852bdf9

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

indexdigest/linters/linter_0031_low_cardinality_index.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ def get_low_cardinality_indices(database):
3535
table_name=table_name, database_name=database.db_name)
3636
)
3737

38+
print('get_low_cardinality_indices', indices)
39+
3840
for index in indices:
3941
# the cardinality is too high
4042
if index['CARDINALITY'] > INDEX_CARDINALITY_THRESHOLD:

0 commit comments

Comments
 (0)