HADOOP-19188. Fix TestHarFileSystem and TestFilterFileSystem failing after bulk delete API got added. (#6848)
Follow up to: HADOOP-18679 Add API for bulk/paged delete of files and objects Contributed by Mukund Thakur
This commit is contained in:
parent
ccb8ff4360
commit
d107931fc7
@ -148,6 +148,7 @@ public Token<?>[] addDelegationTokens(String renewer, Credentials creds)
|
|||||||
|
|
||||||
FSDataOutputStream append(Path f, int bufferSize,
|
FSDataOutputStream append(Path f, int bufferSize,
|
||||||
Progressable progress, boolean appendToNewBlock) throws IOException;
|
Progressable progress, boolean appendToNewBlock) throws IOException;
|
||||||
|
BulkDelete createBulkDelete(Path path) throws IllegalArgumentException, IOException;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
@ -257,6 +257,8 @@ FSDataOutputStream append(Path f, int bufferSize,
|
|||||||
Progressable progress, boolean appendToNewBlock) throws IOException;
|
Progressable progress, boolean appendToNewBlock) throws IOException;
|
||||||
|
|
||||||
Path getEnclosingRoot(Path path) throws IOException;
|
Path getEnclosingRoot(Path path) throws IOException;
|
||||||
|
|
||||||
|
BulkDelete createBulkDelete(Path path) throws IllegalArgumentException, IOException;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
Loading…
Reference in New Issue
Block a user