Skip to content

Commit

Permalink
Resolved copy-errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
svaningelgem committed Sep 12, 2023
1 parent 55d042c commit 2be0706
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/polars-pipe/src/pipeline/convert.rs
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ where
FileType::Csv(csv_options) => Box::new(CsvCloudSink::new(
uri,
cloud_options.as_ref(),
*csv_options,
csv_options.clone(),
input_schema.as_ref(),
)?)
as Box<dyn SinkTrait>,
Expand Down
2 changes: 1 addition & 1 deletion crates/polars-plan/src/logical_plan/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ pub struct IpcWriterOptions {
}

#[cfg(feature = "csv")]
#[derive(Copy, Clone, Debug, PartialEq, Eq, Default)]
#[derive(Clone, Debug, PartialEq, Eq, Default)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub struct CsvWriteOptions {
pub has_header: bool,
Expand Down

0 comments on commit 2be0706

Please sign in to comment.