mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-09-08 06:29:04 +00:00
* init impl Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * handle no cast Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * refactor using common-expr Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * extend matching pattern Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * more tests Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * simplification Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * fix zero timestamp Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * fix: normalize sqlness partition count output Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * fix: normalize remaining sqlness plan output Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * fix: normalize sqlness repartition details in tql explain Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * fix: tighten const normalization casts * test: normalize standalone tql explain repartition output * resolve cr comments Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * simplify Signed-off-by: Ruihang Xia <waynestxia@gmail.com> --------- Signed-off-by: Ruihang Xia <waynestxia@gmail.com>
99 lines
2.5 KiB
TOML
99 lines
2.5 KiB
TOML
[package]
|
|
name = "query"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[features]
|
|
enterprise = ["sql/enterprise"]
|
|
vector_index = []
|
|
|
|
[dependencies]
|
|
ahash.workspace = true
|
|
api.workspace = true
|
|
arc-swap = "1.0"
|
|
arrow.workspace = true
|
|
arrow-schema.workspace = true
|
|
async-recursion = "1.0"
|
|
async-stream.workspace = true
|
|
async-trait.workspace = true
|
|
bytes.workspace = true
|
|
catalog.workspace = true
|
|
chrono.workspace = true
|
|
common-base.workspace = true
|
|
common-catalog.workspace = true
|
|
common-datasource.workspace = true
|
|
common-error.workspace = true
|
|
common-function.workspace = true
|
|
common-macro.workspace = true
|
|
common-meta.workspace = true
|
|
common-plugins.workspace = true
|
|
common-query.workspace = true
|
|
common-recordbatch.workspace = true
|
|
common-runtime.workspace = true
|
|
common-stat.workspace = true
|
|
common-telemetry.workspace = true
|
|
common-time.workspace = true
|
|
datafusion.workspace = true
|
|
datafusion-common.workspace = true
|
|
datafusion-expr.workspace = true
|
|
datafusion-expr-common.workspace = true
|
|
datafusion-functions.workspace = true
|
|
datafusion-optimizer.workspace = true
|
|
datafusion-physical-expr.workspace = true
|
|
datafusion-sql.workspace = true
|
|
datatypes.workspace = true
|
|
either.workspace = true
|
|
futures.workspace = true
|
|
futures-util.workspace = true
|
|
greptime-proto.workspace = true
|
|
humantime.workspace = true
|
|
itertools.workspace = true
|
|
lazy_static.workspace = true
|
|
log-query.workspace = true
|
|
meter-core.workspace = true
|
|
meter-macros.workspace = true
|
|
object-store.workspace = true
|
|
once_cell.workspace = true
|
|
parking_lot.workspace = true
|
|
partition.workspace = true
|
|
prometheus.workspace = true
|
|
promql.workspace = true
|
|
promql-parser.workspace = true
|
|
prost.workspace = true
|
|
rand.workspace = true
|
|
regex.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
session.workspace = true
|
|
snafu.workspace = true
|
|
sql.workspace = true
|
|
sqlparser.workspace = true
|
|
store-api.workspace = true
|
|
substrait.workspace = true
|
|
table.workspace = true
|
|
tokio.workspace = true
|
|
tracing.workspace = true
|
|
uuid.workspace = true
|
|
|
|
[dev-dependencies]
|
|
arrow.workspace = true
|
|
catalog = { workspace = true, features = ["testing"] }
|
|
common-function.workspace = true
|
|
common-macro.workspace = true
|
|
common-query = { workspace = true, features = ["testing"] }
|
|
fastrand = "2.0"
|
|
nalgebra.workspace = true
|
|
num = "0.4"
|
|
num-traits = "0.2"
|
|
paste.workspace = true
|
|
pretty_assertions.workspace = true
|
|
rand.workspace = true
|
|
session = { workspace = true, features = ["testing"] }
|
|
store-api.workspace = true
|
|
table = { workspace = true, features = ["testing"] }
|
|
tokio-stream.workspace = true
|