Skip to content
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

feat: add source trait #803

Merged
merged 5 commits into from
Oct 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 57 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 0 additions & 6 deletions crates/sparrow-arrow/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,12 @@
pub mod attachments;
#[cfg(feature = "avro")]
pub mod avro;
mod batch;
jordanrfrazier marked this conversation as resolved.
Show resolved Hide resolved
mod concat_take;
pub mod downcast;
pub mod hash;
pub mod hasher;
mod row_time;
pub mod scalar_value;
pub mod serde;
#[cfg(any(test, feature = "testing"))]
pub mod testing;
pub mod utils;

pub use batch::*;
pub use concat_take::*;
pub use row_time::*;
30 changes: 30 additions & 0 deletions crates/sparrow-batch/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
[package]
name = "sparrow-batch"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
publish = false
description = """
Defines the main struct for wrapping RecordBatches in execution.
"""

[dependencies]
arrow.workspace = true
arrow-array.workspace = true
arrow-schema.workspace = true
arrow-select.workspace = true
derive_more.workspace = true
error-stack.workspace = true
itertools.workspace = true
static_init.workspace = true
proptest = { workspace = true, optional = true }

[dev-dependencies]
sparrow-testing = { path = "../sparrow-testing" }
sparrow-merge = { path = "../sparrow-merge" }
proptest.workspace = true

[lib]
bench = false
doctest = false
Loading
Loading