pvary commented on code in PR #14880:
URL: https://github.com/apache/iceberg/pull/14880#discussion_r2634157395


##########
flink/v2.1/flink/src/main/java/org/apache/iceberg/flink/util/SerializerHelper.java:
##########
@@ -16,20 +16,22 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.apache.iceberg.flink.source.split;
+package org.apache.iceberg.flink.util;
 
 import java.io.IOException;
 import java.io.Serializable;
 import java.io.UTFDataFormatException;
 import org.apache.flink.core.memory.DataInputDeserializer;
+import org.apache.flink.core.memory.DataInputView;
 import org.apache.flink.core.memory.DataOutputSerializer;
+import org.apache.flink.core.memory.DataOutputView;
 
 /**
  * Helper class to serialize and deserialize strings longer than 65K. The 
inspiration is mostly
  * taken from the class 
org.apache.flink.core.memory.DataInputSerializer.readUTF and
  * org.apache.flink.core.memory.DataOutputSerializer.writeUTF.
  */
-class SerializerHelper implements Serializable {
+public class SerializerHelper implements Serializable {

Review Comment:
   Annotate with `@Interal`



-- 
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]

Reply via email to