This is an automated email from the ASF dual-hosted git repository.
tustvold pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
The following commit(s) were added to refs/heads/master by this push:
new ff4e8e5c5 Minor: use all primitive types in test_layouts (#4229)
ff4e8e5c5 is described below
commit ff4e8e5c5dee2b4bb5c9f55d15d9a9ddaf5833b2
Author: Igor Izvekov <[email protected]>
AuthorDate: Wed May 17 14:11:49 2023 +0300
Minor: use all primitive types in test_layouts (#4229)
---
arrow-array/src/types.rs | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/arrow-array/src/types.rs b/arrow-array/src/types.rs
index b50018ca9..8c19301dc 100644
--- a/arrow-array/src/types.rs
+++ b/arrow-array/src/types.rs
@@ -1695,6 +1695,12 @@ mod tests {
test_layout::<Float16Type>();
test_layout::<Float32Type>();
test_layout::<Float64Type>();
+ test_layout::<Decimal128Type>();
+ test_layout::<Decimal256Type>();
+ test_layout::<TimestampNanosecondType>();
+ test_layout::<TimestampMillisecondType>();
+ test_layout::<TimestampMicrosecondType>();
+ test_layout::<TimestampNanosecondType>();
test_layout::<TimestampSecondType>();
test_layout::<Date32Type>();
test_layout::<Date64Type>();
@@ -1708,5 +1714,6 @@ mod tests {
test_layout::<DurationNanosecondType>();
test_layout::<DurationMicrosecondType>();
test_layout::<DurationMillisecondType>();
+ test_layout::<DurationSecondType>();
}
}