Skip to content

Commit

Permalink
fix: update the ceresdbproto dep
Browse files Browse the repository at this point in the history
  • Loading branch information
ShiKaiWi committed Aug 10, 2023
1 parent 8d45090 commit 83a891c
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 30 deletions.
46 changes: 17 additions & 29 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ bytes = "1.1.0"
bytes_ext = { path = "components/bytes_ext" }
catalog = { path = "catalog" }
catalog_impls = { path = "catalog_impls" }
ceresdbproto = { git = "https://github.com/ShiKaiWi/ceresdbproto.git", rev = "c33cc342c64521a25dfd00da8c6ce746f682ab96" }
ceresdbproto = "1.0.10"
codec = { path = "components/codec" }
chrono = "0.4"
clap = "3.0"
Expand Down
2 changes: 2 additions & 0 deletions table_engine/src/remote/model.rs
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,8 @@ impl WriteRequest {
let max_timestamp = row_group.max_timestamp().as_i64();

let mut encoded_rows = Vec::with_capacity(row_group.num_rows());
// TODO: The schema of the written row group may be different from the original
// one, so the compatibility for that should be taken consideration.
let index_in_schema = IndexInWriterSchema::for_same_schema(table_schema.num_columns());
for row in &row_group {
let mut buf = ByteVec::new();
Expand Down

0 comments on commit 83a891c

Please sign in to comment.