Available on crate feature
compute_temporal
only.Expand description
Defines temporal kernels for time and date related functions.
Functionsยง
- Extracts the days of a temporal array as
PrimitiveArray<i8>
. - Extracts the hours of a temporal array as
PrimitiveArray<i8>
. Value ranges from 0 to 23. Use [can_hour
] to check if this operation is supported for the targetArrowDataType
. - Extracts ISO week of a temporal array as
PrimitiveArray<i8>
. - Extracts the minutes of a temporal array as
PrimitiveArray<i8>
. Value ranges from 0 to 59. Use [can_minute
] to check if this operation is supported for the targetArrowDataType
. - Extracts the months of a temporal array as
PrimitiveArray<i8>
. - Extracts the nanoseconds of a temporal array as
PrimitiveArray<i32>
. - Extracts the seconds of a temporal array as
PrimitiveArray<i8>
. Value ranges from 0 to 59. Use [can_second
] to check if this operation is supported for the targetArrowDataType
. - Extracts weekday of a temporal array as
PrimitiveArray<i8>
. - Extracts the years of a temporal array as
PrimitiveArray<i32>
.