chaokunyang commented on issue #1971: URL: https://github.com/apache/fury/issues/1971#issuecomment-2528437188
Hi @MC-2016 , to construct a BinaryRow, you can take following code as an example: ```java byte[] serializedBytes = xxx; Schema schema = xxx; BinaryRow newRow = new BinaryRow(schema); MemoryBuffer buffer = MemoryBuffer.fromByteArray(serializedBytes); newRow.pointTo(buffer, 0, buffer.size()); ``` -- 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]
