mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-04 20:32:56 +00:00
* feat: add timezone info to query context * feat: parse mysql compatible time zone string * feat: add method to timestamp for rendering timezone aware string * feat: use timezone from session for time string rendering * refactor: use querycontectref * feat: implement session/timezone variable read/write * style: resolve toml format * test: update tests * Apply suggestions from code review Co-authored-by: dennis zhuang <killme2008@gmail.com> * Update src/session/src/context.rs Co-authored-by: dennis zhuang <killme2008@gmail.com> * refactor: address review issues --------- Co-authored-by: dennis zhuang <killme2008@gmail.com>
12 lines
277 B
TOML
12 lines
277 B
TOML
[package]
|
|
name = "session"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
arc-swap = "1.5"
|
|
common-catalog = { path = "../common/catalog" }
|
|
common-telemetry = { path = "../common/telemetry" }
|
|
common-time = { path = "../common/time" }
|