mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-05-27 02:10:38 +00:00
* feat: querying from view works * feat: use MemoryCatalogProviderList instead of DummyCatalogList * refactor: revert src/query/src/dummy_catalog.rs * chore: clean code * fix: make clippy happy * fix: toml format * fix: sqlness * fix: forgot files * fix: make sqlness happy * test: table source, serializer and decoder * fix: fail to decode plan because of invalid table names * test: adds more sqlness test for view * chore: remove unused errors * fix: comments * fix: typo * fix: invalidate view info cache after creating view successfully * chore: apply suggestion Co-authored-by: Ruihang Xia <waynestxia@gmail.com> * chore: apply suggestion Co-authored-by: Ruihang Xia <waynestxia@gmail.com> * fix: compile error after rebeasing * chore: style Co-authored-by: Ruihang Xia <waynestxia@gmail.com> * fix: don't export table_name in common-meta * chore: change ViewInfo::new signature * docs: leave a TODO for optimize param --------- Co-authored-by: Ruihang Xia <waynestxia@gmail.com>
84 lines
2.1 KiB
TOML
84 lines
2.1 KiB
TOML
[package]
|
|
name = "query"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[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 = "0.1"
|
|
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-telemetry.workspace = true
|
|
common-time.workspace = true
|
|
datafusion.workspace = true
|
|
datafusion-common.workspace = true
|
|
datafusion-expr.workspace = true
|
|
datafusion-functions.workspace = true
|
|
datafusion-optimizer.workspace = true
|
|
datafusion-physical-expr.workspace = true
|
|
datafusion-sql.workspace = true
|
|
datatypes.workspace = true
|
|
futures = "0.3"
|
|
futures-util.workspace = true
|
|
greptime-proto.workspace = true
|
|
humantime.workspace = true
|
|
itertools.workspace = true
|
|
lazy_static.workspace = true
|
|
meter-core.workspace = true
|
|
meter-macros.workspace = true
|
|
object-store.workspace = true
|
|
once_cell.workspace = true
|
|
prometheus.workspace = true
|
|
promql.workspace = true
|
|
promql-parser.workspace = true
|
|
prost.workspace = true
|
|
regex.workspace = true
|
|
session.workspace = true
|
|
snafu.workspace = true
|
|
sql.workspace = true
|
|
store-api.workspace = true
|
|
substrait.workspace = true
|
|
table.workspace = true
|
|
tokio.workspace = true
|
|
|
|
[dev-dependencies]
|
|
approx_eq = "0.1"
|
|
arrow.workspace = true
|
|
catalog = { workspace = true, features = ["testing"] }
|
|
common-macro.workspace = true
|
|
common-query = { workspace = true, features = ["testing"] }
|
|
format_num = "0.1"
|
|
num = "0.4"
|
|
num-traits = "0.2"
|
|
paste = "1.0"
|
|
rand.workspace = true
|
|
session = { workspace = true, features = ["testing"] }
|
|
statrs = "0.16"
|
|
stats-cli = "3.0"
|
|
store-api.workspace = true
|
|
streaming-stats = "0.2"
|
|
table = { workspace = true, features = ["testing"] }
|
|
tokio-stream.workspace = true
|