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

Change arrow to crate.io instead of git sha #605

Merged
merged 2 commits into from
May 24, 2021
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
2 changes: 1 addition & 1 deletion .github/workflows/performance-tests-standalone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
run: |
bash ./scripts/setup/dev_setup.sh

- uses: actions-rs/cargo@v1
- name: Build release
run: RUST_BACKTRACE=full RUSTFLAGS="-C target-cpu=native" cargo build --bin=fuse-query --release

- name: Run Performance Tests with Standalone mode
Expand Down
87 changes: 22 additions & 65 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions common/arrow/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ edition = "2018"
# Workspace dependencies

# Github dependencies
arrow = { git = "https://github.com/apache/arrow-rs", rev = "a870b24"}
arrow-flight = { git = "https://github.com/apache/arrow-rs", rev = "a870b24"}
parquet = { git = "https://github.com/apache/arrow-rs", rev = "a870b24", features = ["arrow"]}
arrow = { version = "4.0" }
arrow-flight = { version = "4.0" }
parquet = { version = "4.0", features = ["arrow"] }

# Crates.io dependencies

Expand Down