|
@@ -670,4 +670,9 @@ public class FilterFileSystem extends FileSystem {
|
|
public FSDataOutputStreamBuilder createFile(Path path) {
|
|
public FSDataOutputStreamBuilder createFile(Path path) {
|
|
return fs.createFile(path);
|
|
return fs.createFile(path);
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public FSDataOutputStreamBuilder appendFile(Path path) {
|
|
|
|
+ return fs.appendFile(path);
|
|
|
|
+ }
|
|
}
|
|
}
|