Skip to content

Commit

Permalink
Use RecordWrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
ismailsimsek committed Oct 5, 2024
1 parent fa3eea5 commit 8fc3705
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
*/
package io.debezium.server.iceberg.tableoperator;

import org.apache.iceberg.data.GenericRecord;
import org.apache.iceberg.data.Record;
import org.apache.iceberg.types.Types.StructType;

Expand Down Expand Up @@ -82,4 +81,9 @@ public <T> T get(int pos, Class<T> javaClass) {
public <T> void set(int pos, T value) {
delegate.set(pos, value);
}

@Override
public String toString() {
return delegate.toString();
}
}

0 comments on commit 8fc3705

Please sign in to comment.