chore: add Metrics in FlightMetadata (#134)

* chore: add metrics to metadata

* chore: update metrics to message

* chore: change string to bytes for backward compatibility

* chore: rebase main
This commit is contained in:
shuiyisong
2024-01-16 12:02:54 +08:00
committed by GitHub
parent 2c1f17dce7
commit 65b008f018
6 changed files with 1578 additions and 189 deletions
+8 -1
View File
@@ -60,7 +60,14 @@ message Token { string token = 1; }
message AffectedRows { uint32 value = 1; }
message FlightMetadata { AffectedRows affected_rows = 1; }
message Metrics {
bytes metrics = 1;
}
message FlightMetadata {
AffectedRows affected_rows = 1;
Metrics metrics = 2;
}
enum SemanticType {
TAG = 0;