mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-10 15:22:56 +00:00
* feat: impl default value for column in schema * test: add test for column's default value * refactor: rename ColumnDefaultValue to ColumnDefaultConstraint * fix: timestamp column may be a constant vector * fix: test_shutdown_pg_server * fix: typo Co-authored-by: LFC <bayinamine@gmail.com> * fix: typo Co-authored-by: LFC <bayinamine@gmail.com> * fix: typo Co-authored-by: LFC <bayinamine@gmail.com> * chore: use table_info directly Co-authored-by: LFC <bayinamine@gmail.com> * refactor: by CR comments Co-authored-by: LFC <bayinamine@gmail.com>
14 lines
415 B
TOML
14 lines
415 B
TOML
[package]
|
|
name = "sql"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
common-error = { path = "../common/error" }
|
|
common-time = { path = "../common/time" }
|
|
datatypes = { path = "../datatypes" }
|
|
snafu = { version = "0.7", features = ["backtraces"] }
|
|
sqlparser = "0.15.0"
|
|
table-engine = { path = "../table-engine" }
|