Skip to content

Commit

Permalink
feat: introduce column desc in the ContingousRow (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShiKaiWi authored Oct 11, 2023
1 parent 9f56db2 commit fa644ea
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions protos/engine/remote_engine.proto
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,15 @@ message ReadResponse {
}
}

message ColumnDesc {
uint32 id = 1;
schema.DataType typ = 2;
}

message ContiguousRows {
uint32 schema_version = 1;
repeated bytes encoded_rows = 2;
repeated ColumnDesc column_descs = 3;
}

message RowGroup {
Expand Down
2 changes: 1 addition & 1 deletion rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ceresdbproto"
version = "1.0.17"
version = "1.0.18"
authors = ["CeresDB Authors <[email protected]>"]
edition = "2021"
repository = "https://github.com/CeresDB/ceresdbproto"
Expand Down

0 comments on commit fa644ea

Please sign in to comment.