Skip to content

Commit b05e0d5

Browse files
committed
fix
1 parent 7d3cf8f commit b05e0d5

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

paimon-core/src/main/java/org/apache/paimon/append/DedicatedFormatRollingFileWriter.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
import org.apache.paimon.fileindex.FileIndexOptions;
2323
import org.apache.paimon.format.FileFormat;
2424
import org.apache.paimon.fs.FileIO;
25+
import org.apache.paimon.fs.Path;
2526
import org.apache.paimon.io.BundleRecords;
2627
import org.apache.paimon.io.DataFileMeta;
2728
import org.apache.paimon.io.DataFilePathFactory;
@@ -401,6 +402,12 @@ public void writeBundle(BundleRecords bundle) throws IOException {
401402
}
402403
}
403404

405+
@Override
406+
public void appendFile(FileIO fileIO, Path sourcePath, long recordCount) {
407+
throw new UnsupportedOperationException(
408+
getClass().getSimpleName() + " does not support appendFile");
409+
}
410+
404411
/**
405412
* Returns the total number of records written.
406413
*

0 commit comments

Comments
 (0)