diff --git a/sqlmesh/core/node.py b/sqlmesh/core/node.py index 3ee97becc9..73e4a31940 100644 --- a/sqlmesh/core/node.py +++ b/sqlmesh/core/node.py @@ -28,7 +28,8 @@ class IntervalUnit(str, Enum): """IntervalUnit is the inferred granularity of an incremental node. - IntervalUnit can be one of 5 types, YEAR, MONTH, DAY, HOUR, MINUTE. The unit is inferred + IntervalUnit can be one of 7 types: YEAR, MONTH, DAY, HOUR, HALF_HOUR, QUARTER_HOUR, + FIVE_MINUTE. The unit is inferred based on the cron schedule of a node. The minimum time delta between a sample set of dates is used to determine which unit a node's schedule is.