Skip to content

Commit

Permalink
fix: revert setting utc by default
Browse files Browse the repository at this point in the history
  • Loading branch information
roeap committed Nov 11, 2023
1 parent d8ba94f commit fd35b8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/deltalake-core/src/kernel/arrow/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -789,7 +789,7 @@ mod tests {
let timestamp_field = DataType::Primitive(PrimitiveType::Timestamp);
assert_eq!(
<ArrowDataType as TryFrom<&DataType>>::try_from(&timestamp_field).unwrap(),
ArrowDataType::Timestamp(TimeUnit::Microsecond, Some("UTC".into()))
ArrowDataType::Timestamp(TimeUnit::Microsecond, None)
);
}

Expand Down

0 comments on commit fd35b8a

Please sign in to comment.