mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-10 15:22:56 +00:00
* feat(sqlness): add kafka wal config * chore: add sqlness with kafka wal ci config * fix: fix config * chore: apply suggestions from CR * fix: add metasrv config to sqlness with kafka * fix: replay memtable should from flushed_entry_id + 1 * fix: should set append flag to fopen * feat: start wal allocator in standalone meta mode * feat: append a noop record after kafka topic initialization * test: ignore tests temporally * test: change sqlness kafka wal config
22 lines
527 B
TOML
22 lines
527 B
TOML
[package]
|
|
name = "sqlness-runner"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
async-trait = "0.1"
|
|
clap = { version = "4.0", features = ["derive"] }
|
|
client.workspace = true
|
|
common-base.workspace = true
|
|
common-error.workspace = true
|
|
common-grpc.workspace = true
|
|
common-query.workspace = true
|
|
common-recordbatch.workspace = true
|
|
common-time.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
sqlness = { version = "0.5" }
|
|
tinytemplate = "1.2"
|
|
tokio.workspace = true
|