walterddr commented on code in PR #11732:
URL: https://github.com/apache/pinot/pull/11732#discussion_r1344837927
##########
pinot-query-planner/src/main/java/org/apache/pinot/query/planner/serde/ProtoSerializationUtils.java:
##########
@@ -215,7 +215,7 @@ private static Object constructLiteral(Plan.LiteralField
literalField) {
case STRINGFIELD:
return literalField.getStringField();
case BYTESFIELD:
- return literalField.getBytesField();
+ return literalField.getBytesField().toByteArray();
Review Comment:
in line 150 the input format is `byte[]` we need to convert that to
ByteArray as well if we are doing the deser into byte array. they need to
match.
--
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]