Skip to content

Commit

Permalink
redirect datafusion and influxql url.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rachelint committed Jul 20, 2023
1 parent 850af06 commit 33b02cf
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 28 deletions.
39 changes: 20 additions & 19 deletions Cargo.lock

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

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ clru = "0.6.1"
cluster = { path = "cluster" }
criterion = "0.3"
common_types = { path = "common_types" }
datafusion = { git = "https://github.com/apache/arrow-datafusion.git", rev = "44e3876758bd234547ed07afd6e48c7fc62ea525" }
datafusion-proto = { git = "https://github.com/apache/arrow-datafusion.git", rev = "44e3876758bd234547ed07afd6e48c7fc62ea525" }
datafusion = { git = "https://github.com/CeresDB/arrow-datafusion.git", rev = "a6dcd943051a083693c352c6b4279156548490a0" }
datafusion-proto = { git = "https://github.com/CeresDB/arrow-datafusion.git", rev = "a6dcd943051a083693c352c6b4279156548490a0" }
df_operator = { path = "df_operator" }
future_cancel = { path = "components/future_cancel" }
etcd-client = "0.10.3"
Expand All @@ -106,10 +106,10 @@ log = "0.4"
logger = { path = "components/logger" }
lru = "0.7.6"
id_allocator = { path = "components/id_allocator" }
influxql-logical-planner = { git = "https://github.com/Rachelint/influxql.git", rev = "674263d1fcb8304fe0907bf4594873aa3002344c", package = "iox_query_influxql" }
influxql-parser = { git = "https://github.com/Rachelint/influxql.git", rev = "674263d1fcb8304fe0907bf4594873aa3002344c", package = "influxdb_influxql_parser" }
influxql-query = { git = "https://github.com/Rachelint/influxql.git", rev = "674263d1fcb8304fe0907bf4594873aa3002344c", package = "iox_query" }
influxql-schema = { git = "https://github.com/Rachelint/influxql.git", rev = "674263d1fcb8304fe0907bf4594873aa3002344c", package = "schema" }
influxql-logical-planner = { git = "https://github.com/CeresDB/influxql.git", rev = "b4520c6d5dfb6d68e4c7671555050391292dbffe", package = "iox_query_influxql" }
influxql-parser = { git = "https://github.com/CeresDB/influxql.git", rev = "b4520c6d5dfb6d68e4c7671555050391292dbffe", package = "influxdb_influxql_parser" }
influxql-query = { git = "https://github.com/CeresDB/influxql.git", rev = "b4520c6d5dfb6d68e4c7671555050391292dbffe", package = "iox_query" }
influxql-schema = { git = "https://github.com/CeresDB/influxql.git", rev = "b4520c6d5dfb6d68e4c7671555050391292dbffe", package = "schema" }
interpreters = { path = "interpreters" }
itertools = "0.10.5"
macros = { path = "components/macros" }
Expand Down
4 changes: 2 additions & 2 deletions query_frontend/src/promql/remote.rs
Original file line number Diff line number Diff line change
Expand Up @@ -225,8 +225,8 @@ Query(QueryPlan { df_plan: Sort: cpu.tsid ASC NULLS FIRST, cpu.time ASC NULLS FI
assert_eq!(
r#"a = Utf8("1")
b != Utf8("2")
regexpmatch(c, Utf8("^(?:3)$")) IS NOT NULL
regexpmatch(d, Utf8("^(?:4)$")) IS NULL"#,
regexp_match(c, Utf8("^(?:3)$")) IS NOT NULL
regexp_match(d, Utf8("^(?:4)$")) IS NULL"#,
filters
.iter()
.map(|f| f.to_string())
Expand Down
1 change: 0 additions & 1 deletion table_engine/src/predicate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,6 @@ impl<'a> TimeRangeExtractor<'a> {
| Expr::Literal(_)
| Expr::Not(_)
| Expr::Like { .. }
| Expr::ILike { .. }
| Expr::SimilarTo { .. }
| Expr::IsNotNull(_)
| Expr::IsNull(_)
Expand Down

0 comments on commit 33b02cf

Please sign in to comment.