File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
fluss-lake/fluss-lake-iceberg/src/main/java/com/alibaba/fluss/lake/iceberg/tiering Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 2323import com .alibaba .fluss .lake .writer .WriterInitContext ;
2424import com .alibaba .fluss .metadata .TablePath ;
2525import com .alibaba .fluss .record .LogRecord ;
26+ import com .alibaba .fluss .shaded .guava32 .com .google .common .collect .Lists ;
2627
27- import com .google .common .collect .Lists ;
2828import org .apache .iceberg .FileFormat ;
2929import org .apache .iceberg .PartitionSpec ;
3030import org .apache .iceberg .Schema ;
Original file line number Diff line number Diff line change 2020import com .alibaba .fluss .lake .iceberg .tiering .RecordWriter ;
2121import com .alibaba .fluss .metadata .TableBucket ;
2222import com .alibaba .fluss .record .LogRecord ;
23+ import com .alibaba .fluss .shaded .guava32 .com .google .common .collect .Lists ;
2324import com .alibaba .fluss .types .RowType ;
2425
25- import com .google .common .collect .Lists ;
2626import org .apache .iceberg .FileFormat ;
2727import org .apache .iceberg .Schema ;
2828import org .apache .iceberg .Table ;
@@ -99,8 +99,10 @@ public void write(LogRecord record) throws Exception {
9999 break ;
100100 case UPDATE_BEFORE :
101101 deltaWriter .delete (flussRecordAsIcebergRecord );
102+ break ;
102103 case DELETE :
103104 deltaWriter .delete (flussRecordAsIcebergRecord );
105+ break ;
104106 default :
105107 throw new UnsupportedOperationException (
106108 "Unknown row kind: " + record .getChangeType ());
You can’t perform that action at this time.
0 commit comments