bump datafusion to 5.0.0 release

This commit is contained in:
Qingping Hou 2021-08-14 16:08:42 -07:00 committed by QP Hou
parent a7255de838
commit d4a2ad9d84
7 changed files with 10 additions and 8 deletions

6
Cargo.lock generated
View File

@ -736,8 +736,9 @@ dependencies = [
[[package]]
name = "datafusion"
version = "4.0.0-SNAPSHOT"
source = "git+https://github.com/houqp/arrow-datafusion.git?rev=4ddd2f5e7582ffe662aea27bbb74c58cd0715152#4ddd2f5e7582ffe662aea27bbb74c58cd0715152"
version = "5.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aab48ee19b13cfe7523ae84ec203a1ca05ce1fda52f1ac0e45d87df90c548732"
dependencies = [
"ahash",
"arrow",
@ -2196,7 +2197,6 @@ dependencies = [
"actix-service",
"actix-web",
"anyhow",
"arrow",
"clap",
"columnq",
"env_logger",

View File

@ -9,7 +9,7 @@ name = "columnq"
path = "src/main.rs"
[dependencies]
columnq = { path = "../columnq" }
columnq = { path = "../columnq", version = "0" }
serde_json = "*"
log = "0"

View File

@ -11,8 +11,8 @@ path = "src/lib.rs"
[dependencies]
arrow = "5"
parquet = "5"
# datafusion = "5"
datafusion = { git = "https://github.com/houqp/arrow-datafusion.git", rev = "4ddd2f5e7582ffe662aea27bbb74c58cd0715152" }
datafusion = "5"
# datafusion = { git = "https://github.com/houqp/arrow-datafusion.git", rev = "4ddd2f5e7582ffe662aea27bbb74c58cd0715152" }
log = "0"
regex = "1"

View File

@ -1,5 +1,6 @@
use std::fmt;
use datafusion::arrow;
use datafusion::error::DataFusionError;
use uriparse::uri_reference::URIReferenceError;

View File

@ -13,8 +13,7 @@ name = "roapi-http"
path = "src/main.rs"
[dependencies]
columnq = { path = "../columnq" }
arrow = "5"
columnq = { path = "../columnq", version = "0" }
# all actix dependencies are patched to use git source until actix-web 4.x lands
actix-web = "4.0.0-beta.4"

View File

@ -1,6 +1,7 @@
use std::convert::TryFrom;
use actix_web::{http, HttpRequest, HttpResponse};
use columnq::datafusion::arrow;
use columnq::encoding;
use columnq::ColumnQ;
use log::info;

View File

@ -1,6 +1,7 @@
use std::fmt;
use actix_web::{http, HttpResponse};
use columnq::datafusion::arrow;
use columnq::error::QueryError;
use serde::Serializer;
use serde_derive::Serialize;