-
Notifications
You must be signed in to change notification settings - Fork 875
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Split out arrow-csv (#2594) #3044
Conversation
use chrono::prelude::*; | ||
|
||
#[test] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These are moved to an integration test in the arrow crate
@@ -595,105 +590,6 @@ sed do eiusmod tempor,-556132.25,1,,2019-04-18T02:45:55.555000000,23:46:03,foo | |||
); | |||
} | |||
|
|||
#[cfg(feature = "chrono-tz")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Moved to integration test in arrow crate
@@ -265,5 +264,9 @@ harness = false | |||
required-features = ["test_utils"] | |||
|
|||
[[test]] | |||
name = "ipc_integration" | |||
name = "ipc" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Opted to remove the redundant integration suffix
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me
//! use arrow::datatypes::{DataType, Field, Schema}; | ||
//! use std::fs::File; | ||
//! use std::sync::Arc; | ||
//! ```no_run |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this changed to "no_run"? It seems like it is a good thing to keep testing, no?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because the file it reads is no longer part of this crate
Co-authored-by: Andrew Lamb <andrew@nerdnetworks.org>
Benchmark runs are scheduled for baseline = a950b52 and contender = fe3318b. fe3318b is a master commit associated with this PR. Results will be available as each benchmark for each run completes. |
* Update parquet to depend on arrow subcrates (#3044) * Fix parquet_derive * Fix parquet_derive * Fix no-default-features test compilation * Fix parquet-fromcsv * Clippy
Which issue does this PR close?
Part of #2594
Rationale for this change
What changes are included in this PR?
Are there any user-facing changes?