mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-07 22:02:56 +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>
61 lines
1.5 KiB
TOML
61 lines
1.5 KiB
TOML
[package]
|
|
name = "catalog"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[features]
|
|
testing = []
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
api.workspace = true
|
|
arrow.workspace = true
|
|
arrow-schema.workspace = true
|
|
async-stream.workspace = true
|
|
async-trait = "0.1"
|
|
bytes.workspace = true
|
|
common-catalog.workspace = true
|
|
common-config.workspace = true
|
|
common-error.workspace = true
|
|
common-macro.workspace = true
|
|
common-meta.workspace = true
|
|
common-query.workspace = true
|
|
common-recordbatch.workspace = true
|
|
common-telemetry.workspace = true
|
|
common-time.workspace = true
|
|
common-version.workspace = true
|
|
dashmap.workspace = true
|
|
datafusion.workspace = true
|
|
datatypes.workspace = true
|
|
futures = "0.3"
|
|
futures-util.workspace = true
|
|
humantime.workspace = true
|
|
itertools.workspace = true
|
|
lazy_static.workspace = true
|
|
meta-client.workspace = true
|
|
moka = { workspace = true, features = ["future", "sync"] }
|
|
partition.workspace = true
|
|
paste = "1.0"
|
|
prometheus.workspace = true
|
|
serde_json.workspace = true
|
|
session.workspace = true
|
|
snafu.workspace = true
|
|
sql.workspace = true
|
|
store-api.workspace = true
|
|
table.workspace = true
|
|
tokio.workspace = true
|
|
|
|
[dev-dependencies]
|
|
cache.workspace = true
|
|
catalog = { workspace = true, features = ["testing"] }
|
|
chrono.workspace = true
|
|
common-meta = { workspace = true, features = ["testing"] }
|
|
common-query = { workspace = true, features = ["testing"] }
|
|
common-test-util.workspace = true
|
|
log-store.workspace = true
|
|
object-store.workspace = true
|
|
tokio.workspace = true
|