This is an automated email from the ASF dual-hosted git repository. jiacai2050 pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/incubator-horaedb-proto.git
commit 375c5ac9e3acbc62dc701d785c35bbe04d05b130 Author: Jiacai Liu <[email protected]> AuthorDate: Fri Dec 29 16:15:21 2023 +0800 fix: add explain remote query context (#120) --- protos/engine/remote_engine.proto | 3 +++ 1 file changed, 3 insertions(+) diff --git a/protos/engine/remote_engine.proto b/protos/engine/remote_engine.proto index a8e0789..a686270 100644 --- a/protos/engine/remote_engine.proto +++ b/protos/engine/remote_engine.proto @@ -164,6 +164,8 @@ enum QueryPriority { Low = 1; } +enum Explain { Analyze = 0; } + message ExecContext { // This field is deprecated, use request_id_str instead. uint64 request_id = 1; @@ -174,6 +176,7 @@ message ExecContext { QueryPriority priority = 5; string displayable_query = 6; string request_id_str = 7; + optional Explain explain = 8; } message ExecutePlanRequest { --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
