Skip to content

Commit

Permalink
chore: Exposes FileType to prelude lazy
Browse files Browse the repository at this point in the history
  • Loading branch information
andyquinterom committed Sep 25, 2023
1 parent b92caa0 commit a11206d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion crates/polars-lazy/src/prelude.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pub(crate) use polars_ops::prelude::*;
pub use polars_ops::prelude::{JoinArgs, JoinType, JoinValidation};
pub use polars_plan::logical_plan::{
AnonymousScan, AnonymousScanOptions, Literal, LiteralValue, LogicalPlan, Null, NULL,
AnonymousScan, AnonymousScanOptions, FileType, Literal, LiteralValue, LogicalPlan, Null, NULL,
};
#[cfg(feature = "csv")]
pub use polars_plan::prelude::CsvWriterOptions;
Expand Down
1 change: 1 addition & 0 deletions crates/polars-plan/src/logical_plan/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ pub use functions::*;
pub use iterator::*;
pub use lit::*;
pub use optimizer::*;
pub use options::FileType;
pub use schema::*;
#[cfg(feature = "serde")]
use serde::{Deserialize, Serialize};
Expand Down

0 comments on commit a11206d

Please sign in to comment.