Skip to content

Commit 7d3dba7

Browse files
committed
test timezone roundtrip on IPC schema conversion
1 parent 64bcfa3 commit 7d3dba7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

rust/arrow/src/ipc/convert.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,10 @@ mod tests {
423423
),
424424
Field::new(
425425
"timestamp[us]",
426-
DataType::Timestamp(TimeUnit::Microsecond, None),
426+
DataType::Timestamp(
427+
TimeUnit::Microsecond,
428+
Some(Arc::new("Africa/Johannesburg".to_string())),
429+
),
427430
false,
428431
),
429432
Field::new(

0 commit comments

Comments
 (0)