Skip to content

Commit

Permalink
remove commented code
Browse files Browse the repository at this point in the history
  • Loading branch information
andygrove committed Dec 24, 2023
1 parent 08898a4 commit 28dc3fc
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions datafusion/proto/tests/cases/roundtrip_logical_plan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,6 @@ async fn roundtrip_logical_plan_copy_to_csv() -> Result<()> {
.with_date_format("dd/MM/yyyy".to_string())
.with_datetime_format("dd/MM/yyyy HH:mm:ss".to_string())
.with_timestamp_format("HH:mm:ss.SSSSSS".to_string())
//.with_timestamp_tz_format("HH:mm:ss.SSSSSS".to_string())
.with_time_format("HH:mm:ss".to_string())
.with_null("NIL".to_string());

Expand Down Expand Up @@ -440,7 +439,6 @@ async fn roundtrip_logical_plan_copy_to_csv() -> Result<()> {
props.datetime_format().unwrap()
);
assert_eq!("HH:mm:ss.SSSSSS", props.timestamp_format().unwrap());
// assert_eq!("HH:mm:ss.SSSSSS", props.timestamp_tz_format().unwrap());
assert_eq!("HH:mm:ss", props.time_format().unwrap());
assert_eq!("NIL", props.null());
}
Expand Down

0 comments on commit 28dc3fc

Please sign in to comment.