-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(rust)!: Import
NamedFrom
in df!
macro
`Series::new` is not implemented on `Series`. This method is provided by `NamedFrom` most of the time. This change makes `df!` explicitly use the NamedFrom::new implementation, potentially causing a breaking change if someone had defined another trait that provides a `new` method to construct a `Series`.
- Loading branch information
1 parent
6a181f2
commit 772a90c
Showing
3 changed files
with
4 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
use polars_core::df; | ||
use polars_core::prelude::*; | ||
use polars_lazy::prelude::*; | ||
use polars_sql::*; | ||
|
||
|