We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6aa79be commit 852bdf9Copy full SHA for 852bdf9
1 file changed
indexdigest/linters/linter_0031_low_cardinality_index.py
@@ -35,6 +35,8 @@ def get_low_cardinality_indices(database):
35
table_name=table_name, database_name=database.db_name)
36
)
37
38
+ print('get_low_cardinality_indices', indices)
39
+
40
for index in indices:
41
# the cardinality is too high
42
if index['CARDINALITY'] > INDEX_CARDINALITY_THRESHOLD:
0 commit comments