We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14e900e commit ad25181Copy full SHA for ad25181
backend/deepchecks_monitoring/schema_models/column_type.py
@@ -63,7 +63,7 @@ def to_sqlalchemy_type(self):
63
return types_map[self]
64
65
def is_indexed(self):
66
- return self in {ColumnType.NUMERIC, ColumnType.INTEGER, ColumnType.BIGINT}
+ return self in {ColumnType.NUMERIC, ColumnType.INTEGER, ColumnType.BIGINT, ColumnType.DATETIME}
67
68
def to_json_schema_type(self, nullable=False, min_items: int = None, max_items: int = None):
69
"""Return the json type of the column type."""
0 commit comments