st-omarkhalid commented on code in PR #18602:
URL: https://github.com/apache/pinot/pull/18602#discussion_r3317923625


##########
pinot-common/src/main/java/org/apache/pinot/common/response/broker/BrokerResponseNative.java:
##########
@@ -649,4 +652,17 @@ public void setMaterializedViewQueried(@Nullable String 
materializedViewQueried)
   public String getMaterializedViewQueried() {
     return _materializedViewQueried;
   }
+
+  @JsonProperty("serverStats")
+  public void setServerStats(@Nullable String serverStats) {
+    _serverStats = serverStats;
+  }
+
+  @Nullable
+  @JsonProperty("serverStats")
+  @JsonInclude(JsonInclude.Include.NON_NULL)
+  @Override
+  public String getServerStats() {
+    return _serverStats;
+  }

Review Comment:
   serverStats is not new though - it's already being built as a string. Don't 
think it could be a JSON unless we go into how it's built and change.



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to