nizarhejazi commented on code in PR #8503: URL: https://github.com/apache/pinot/pull/8503#discussion_r851733466
########## pinot-core/src/main/java/org/apache/pinot/core/query/reduce/GroupByDataTableReducer.java: ########## @@ -370,7 +371,11 @@ public void runJob() { values[colId] = dataTable.getString(rowId, colId); break; case BYTES: - values[colId] = dataTable.getBytes(rowId, colId); + if (columnDataTypes[colId] == ColumnDataType.BIG_DECIMAL) { Review Comment: I think this comment is outdated based on our latest conversation. -- 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