Module interval

Source

Modulesยง

test_utils
A separate mod so that use types::* or use interval::* does not use IntervalTestExt by accident.

Structsยง

Interval
Every interval can be represented by a Interval.
IntervalCmpValue ๐Ÿ”’
https://github.com/postgres/postgres/blob/REL_15_2/src/backend/utils/adt/timestamp.c#L2384
IntervalDisplay
Wrapper so that Debug for IntervalDisplay would use the concise format of Display for Interval.

Enumsยง

DateTimeField
IntervalParseError
Error type for parsing an Interval.
TimeStrToken ๐Ÿ”’

Constantsยง

USECS_PER_DAY ๐Ÿ”’
USECS_PER_MONTH ๐Ÿ”’
USECS_PER_SEC ๐Ÿ”’

Functionsยง

convert_digit ๐Ÿ”’
convert_hms ๐Ÿ”’
convert hour_min_sec format e.g. c = [โ€œ1โ€, โ€œ2โ€, โ€œ3โ€], c will be convert to: [TimeStrToken::Num(1), TimeStrToken::TimeUnit(DateTimeField::Hour), TimeStrToken::Num(2), TimeStrToken::TimeUnit(DateTimeField::Minute), TimeStrToken::Second("3"), TimeStrToken::TimeUnit(DateTimeField::Second)]
convert_unit ๐Ÿ”’
parse_interval ๐Ÿ”’

Type Aliasesยง

ParseResult ๐Ÿ”’