Details
-
Improvement
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
None
-
None
Description
Currently, RowWriter support two methods for text and byte types as follows:
public void putText(byte [] val); public void putBlob(byte[] val);
In addition, we should support the followings:
public void putText(byte [] val, int offset, int length); public void putBlob(byte[] val, int offset, int length);
They would be very frequently used idioms for byte array.