jackjlli commented on a change in pull request #6329: URL: https://github.com/apache/incubator-pinot/pull/6329#discussion_r537842320
########## File path: pinot-broker/src/main/java/org/apache/pinot/broker/requesthandler/BaseBrokerRequestHandler.java ########## @@ -1002,7 +1002,7 @@ private String getActualColumnName(String rawTableName, String columnName, columnName = splits[1]; } if (columnNameMap != null) { - return columnNameMap.getOrDefault(columnName, columnName); + return columnNameMap.getOrDefault(columnName.toLowerCase(), columnName); Review comment: We skipped validating the response content in `OfflineClusterIntegrationTest`. ---------------------------------------------------------------- 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. 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