mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-05-14 12:00:40 +00:00
* feat: v2 schema handling Signed-off-by: jeremyhi <fengjiachun@gmail.com> * feat: impl m1.5 ddl export/import and schema tests Signed-off-by: jeremyhi <fengjiachun@gmail.com> * chore: git ignore update Signed-off-by: jeremyhi <fengjiachun@gmail.com> * chore: add license header Signed-off-by: jeremyhi <fengjiachun@gmail.com> * chore: make fmt-check happy Signed-off-by: jeremyhi <fengjiachun@gmail.com> * fix: Run imported DDL against the intended schema Signed-off-by: jeremyhi <fengjiachun@gmail.com> * fix: Canonicalize schema names after case-insensitive check Signed-off-by: jeremyhi <fengjiachun@gmail.com> * fix: escape sql funcs Signed-off-by: jeremyhi <fengjiachun@gmail.com> * fix: Fixed by carrying explicit execution_schema in DdlStatement instead of parsing schema from SQL Signed-off-by: jeremyhi <fengjiachun@gmail.com> * fix: Fixed by encoding schema names as safe path segments in shared DDL path helpers Signed-off-by: jeremyhi <fengjiachun@gmail.com> * refactor(cli): make export/import v2 schema recovery DDL-only Signed-off-by: jeremyhi <fengjiachun@gmail.com> * chore: by clippy Signed-off-by: jeremyhi <fengjiachun@gmail.com> * chore: follow our styling Signed-off-by: jeremyhi <fengjiachun@gmail.com> * fix(cli): reject remote snapshot URIs with empty root Signed-off-by: jeremyhi <fengjiachun@gmail.com> * fix(cli): dedupe schema filters after canonicalization Signed-off-by: jeremyhi <fengjiachun@gmail.com> * fix(cli): schema-scoped detection to cover external tables Signed-off-by: jeremyhi <fengjiachun@gmail.com> --------- Signed-off-by: jeremyhi <fengjiachun@gmail.com>
76 lines
1.1 KiB
Plaintext
76 lines
1.1 KiB
Plaintext
# Generated by Cargo
|
|
# will have compiled files and executables
|
|
/target/
|
|
# also ignore if it's a symbolic link
|
|
/target
|
|
|
|
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
|
|
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
|
|
|
|
# These are backup files generated by rustfmt
|
|
**/*.rs.bk
|
|
|
|
# Mac DS_Store
|
|
**/*.DS_Store
|
|
|
|
debug/
|
|
|
|
# MSVC Windows builds of rustc generate these, which store debugging information
|
|
*.pdb
|
|
|
|
# JetBrains IDE config directory
|
|
.idea/
|
|
*.iml
|
|
|
|
# VSCode IDE config directory
|
|
.vscode/
|
|
|
|
# Logs
|
|
**/__unittest_logs
|
|
logs/
|
|
!grafana/dashboards/logs/
|
|
|
|
# cpython's generated python byte code
|
|
**/__pycache__/
|
|
|
|
# Benchmark dataset
|
|
benchmarks/data
|
|
|
|
# dotenv
|
|
.env
|
|
|
|
# dashboard files
|
|
!/src/servers/dashboard/VERSION
|
|
/src/servers/dashboard/*
|
|
|
|
# Vscode workspace
|
|
*.code-workspace
|
|
|
|
venv/
|
|
|
|
# Fuzz tests
|
|
tests-fuzz/artifacts/
|
|
tests-fuzz/corpus/
|
|
|
|
# cargo-udeps reports
|
|
udeps-report.json
|
|
|
|
# Nix
|
|
.direnv
|
|
.envrc
|
|
|
|
## default data home
|
|
greptimedb_data
|
|
|
|
# github
|
|
!/.github
|
|
|
|
# Claude code
|
|
CLAUDE.md
|
|
|
|
# AGENTS.md
|
|
AGENTS.md
|
|
|
|
# local design docs
|
|
docs/specs/
|