Skip to content

Commit 725d6bd

Browse files
authored
Merge pull request #1626 from jiacai2050/refactor-storage
refactor: rename columnar storage
2 parents 1368157 + abfa1ea commit 725d6bd

File tree

27 files changed

+62
-60
lines changed

27 files changed

+62
-60
lines changed

Cargo.lock

Lines changed: 29 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,19 @@ description = "A high-performance, distributed, cloud native time-series databas
2828
resolver = "2"
2929
members = [
3030
"src/benchmarks",
31+
"src/columnar_storage"
32+
,
3133
"src/common",
3234
"src/metric_engine",
3335
"src/pb_types",
34-
"src/server",
35-
"src/storage"
36+
"src/server"
3637
]
3738

3839
[workspace.dependencies]
3940
anyhow = { version = "1.0" }
4041
seahash = { version = "4" }
4142
metric_engine = { path = "src/metric_engine" }
42-
horaedb_storage = { package = "storage", path = "src/storage" }
43+
columnar_storage = { path = "src/columnar_storage" }
4344
common = { path = "src/common" }
4445
thiserror = "1"
4546
bytes = "1"

src/benchmarks/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ description.workspace = true
2727

2828
[dependencies]
2929
bytes = { workspace = true }
30+
columnar_storage = { workspace = true }
3031
common = { workspace = true }
31-
horaedb_storage = { workspace = true }
3232
pb_types = { workspace = true }
3333
prost = { workspace = true }
3434
serde = { workspace = true }

src/benchmarks/src/encoding_bench.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
//! encoding bench.
1919
2020
use bytes::Bytes;
21-
use horaedb_storage::{
21+
use columnar_storage::{
2222
manifest::Snapshot,
2323
sst::{FileMeta, SstFile},
2424
};

src/storage/Cargo.toml renamed to src/columnar_storage/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# under the License.
1717

1818
[package]
19-
name = "storage"
19+
name = "columnar_storage"
2020
version.workspace = true
2121
authors.workspace = true
2222
edition.workspace = true
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)