vrajat commented on code in PR #15573:
URL: https://github.com/apache/pinot/pull/15573#discussion_r2055259012


##########
pinot-common/src/main/proto/server.proto:
##########
@@ -25,11 +25,18 @@ service PinotQueryServer {
   rpc Submit(ServerRequest) returns (stream ServerResponse);
 }
 
+message TableSegmentsInfo {
+  string tableName = 1;
+  repeated string segments = 2;
+  repeated string optionalSegments = 3;
+}
+
 message ServerRequest {
   map<string, string> metadata = 1;
   string sql = 2;
   repeated string segments = 3;
   bytes payload = 4;
+  repeated TableSegmentsInfo tableSegmentsInfo = 5;

Review Comment:
   I've added a field for optional segments as well.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org
For additional commands, e-mail: commits-h...@pinot.apache.org

Reply via email to