-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CHORE] Move out datatype and schema from daft-core (#2806)
* Factors out DataType, Field, Schema into `daft-schema` * Factors out our display logic to `common-display` * Factors out array ffi code into `common-arrow-ffi` * Create `StrValue` trait that allows us to pass `&dyn StrValue` to the common-display crate without it knowing what a series is. * Reexport `daft-schema::{DataType, Schema, Field}` for convenience Follow on: * Factor out daft-scan and daft-plan dependance on daft-core. This will allow them to directly depend on `daft-schema`
- Loading branch information
Showing
123 changed files
with
709 additions
and
547 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[dependencies] | ||
arrow2 = {workspace = true} | ||
pyo3 = {workspace = true, optional = true} | ||
|
||
[features] | ||
python = ["dep:pyo3"] | ||
|
||
[package] | ||
edition = {workspace = true} | ||
name = "common-arrow-ffi" | ||
version = {workspace = true} |
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
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,7 @@ | ||
#![feature(let_chains)] | ||
pub mod ascii; | ||
pub mod mermaid; | ||
pub mod table_display; | ||
pub mod tree; | ||
pub mod utils; | ||
|
||
|
Oops, something went wrong.