Skip to content

Commit

Permalink
Move Polars Rust queries to misc folder (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
stinodego authored Feb 21, 2024
1 parent b47363e commit 01e248b
Show file tree
Hide file tree
Showing 8 changed files with 3 additions and 2 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jemallocator = { version = "0.5", features = ["disable_initial_exec_tls"] }

[dependencies.polars]
version = "*"
path = "../../polars/polars"
path = "../../../polars/polars"
default-features = false
features = [
"performant",
Expand Down
1 change: 1 addition & 0 deletions misc/polars_queries_rust/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This crate contains implementations of the TPC-H queries in the Polars Rust API.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use polars::prelude::*;
use std::path::{Path, PathBuf};

static FILES: &str = "../data/tables/scale-1/";
static FILES: &str = "../../data/tables/scale-1/";

fn get_ds(name: &str) -> LazyFrame {
let path = PathBuf::from(FILES).join(Path::new(name));
Expand Down

0 comments on commit 01e248b

Please sign in to comment.