This is an automated email from the ASF dual-hosted git repository. jiacai2050 pushed a commit to branch request-id in repository https://gitbox.apache.org/repos/asf/incubator-horaedb-proto.git
commit 17610e512444fadc5c1d0fafd6b98de7e6a9169f Author: jiacai2050 <[email protected]> AuthorDate: Wed Jan 10 10:03:13 2024 +0800 fix: change request id from int to string --- protos/engine/remote_engine.proto | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/protos/engine/remote_engine.proto b/protos/engine/remote_engine.proto index a686270..45171c2 100644 --- a/protos/engine/remote_engine.proto +++ b/protos/engine/remote_engine.proto @@ -63,7 +63,7 @@ enum ReadOrder { } message TableReadRequest { - uint64 request_id = 1; + string request_id = 1; ReadOptions opts = 2; schema.ProjectedSchema projected_schema = 3; Predicate predicate = 4; @@ -167,16 +167,14 @@ enum QueryPriority { enum Explain { Analyze = 0; } message ExecContext { - // This field is deprecated, use request_id_str instead. - uint64 request_id = 1; + string request_id = 1; string default_catalog = 2; string default_schema = 3; // -1 means no timeout int64 timeout_ms = 4; QueryPriority priority = 5; string displayable_query = 6; - string request_id_str = 7; - optional Explain explain = 8; + optional Explain explain = 7; } message ExecutePlanRequest { --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
