datatypes/vectors/
timestamp.rs1use crate::types::{
16 TimestampMicrosecondType, TimestampMillisecondType, TimestampNanosecondType,
17 TimestampSecondType,
18};
19use crate::vectors::{PrimitiveVector, PrimitiveVectorBuilder};
20
21pub type TimestampSecondVector = PrimitiveVector<TimestampSecondType>;
22pub type TimestampSecondVectorBuilder = PrimitiveVectorBuilder<TimestampSecondType>;
23
24pub type TimestampMillisecondVector = PrimitiveVector<TimestampMillisecondType>;
25pub type TimestampMillisecondVectorBuilder = PrimitiveVectorBuilder<TimestampMillisecondType>;
26
27pub type TimestampMicrosecondVector = PrimitiveVector<TimestampMicrosecondType>;
28pub type TimestampMicrosecondVectorBuilder = PrimitiveVectorBuilder<TimestampMicrosecondType>;
29
30pub type TimestampNanosecondVector = PrimitiveVector<TimestampNanosecondType>;
31pub type TimestampNanosecondVectorBuilder = PrimitiveVectorBuilder<TimestampNanosecondType>;