Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.

Commit

Permalink
substrait example plans made
Browse files Browse the repository at this point in the history
  • Loading branch information
connortsui20 committed Feb 13, 2024
1 parent 5ddb185 commit 73cc3c8
Show file tree
Hide file tree
Showing 6 changed files with 480 additions and 4 deletions.
2 changes: 1 addition & 1 deletion eggstrain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ arrow = "50"
async-trait = "0.1"
datafusion = "35"
serde_json = "1"
substrait = { version = "0.24", features = ["serde"] }
substrait = { version = "0.24", features = ["pbjson"] }
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
rayon = "1"
2 changes: 1 addition & 1 deletion eggstrain/src/execution/substrait/mod.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pub mod example;
pub mod deserialize;
pub mod example;
4 changes: 2 additions & 2 deletions eggstrain/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ pub mod storage_client;

use execution::substrait::deserialize::get_json;


#[tokio::main]
async fn main() {
println!("Hello, world!");
get_json("substrait_plan_example.json");
// get_json("../substrait/substrait_plan_example.json");
get_json("../substrait/basic_query.json");
}
Loading

0 comments on commit 73cc3c8

Please sign in to comment.