Skip to content

Commit

Permalink
ref: Rename sparrow-execution to sparrow-plan-execution (#817)
Browse files Browse the repository at this point in the history
  • Loading branch information
bjchambers authored Oct 17, 2023
1 parent b5709cf commit 1a2d930
Show file tree
Hide file tree
Showing 10 changed files with 56 additions and 56 deletions.
58 changes: 29 additions & 29 deletions Cargo.lock

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

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "sparrow-execution"
name = "sparrow-plan-execution"
version.workspace = true
authors.workspace = true
edition.workspace = true
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions crates/sparrow-session/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ smallvec.workspace = true
sparrow-api = { path = "../sparrow-api" }
sparrow-backend = { path = "../sparrow-backend" }
sparrow-compiler = { path = "../sparrow-compiler" }
sparrow-execution = { path = "../sparrow-execution" }
sparrow-expressions = { path = "../sparrow-expressions" }
sparrow-instructions = { path = "../sparrow-instructions" }
sparrow-interfaces = { path = "../sparrow-interfaces" }
sparrow-logical = { path = "../sparrow-logical" }
sparrow-plan-execution = { path = "../sparrow-plan-execution" }
sparrow-runtime = { path = "../sparrow-runtime" }
sparrow-sources = { path = "../sparrow-sources" }
sparrow-syntax = { path = "../sparrow-syntax" }
sparrow-instructions = { path = "../sparrow-instructions" }
static_init.workspace = true
tempfile.workspace = true
tokio.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/sparrow-session/src/partitioned/session.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ impl Session {
let plan = sparrow_backend::compile(query, None).change_context(Error::Compile)?;

let (output_tx, output_rx) = tokio::sync::mpsc::channel(10);
let executor = sparrow_execution::PlanExecutor::try_new(
let executor = sparrow_plan_execution::PlanExecutor::try_new(
"query_id".to_owned(),
plan,
&self.sources,
Expand Down
46 changes: 23 additions & 23 deletions python/Cargo.lock

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

0 comments on commit 1a2d930

Please sign in to comment.