Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ private FileStoreTable createTableAndWriteData(String tableName) throws Exceptio

FileIO fileIO = table.fileIO();
fileIO.writeFile(orphanFile1, "a", true);
Thread.sleep(2000);
fileIO.writeFile(orphanFile2, "b", true);
Thread.sleep(2000);

return table;
}
Expand Down Expand Up @@ -263,6 +263,7 @@ public void testCleanWithBranch(boolean isNamedArgument) throws Exception {
// create orphan file in snapshot directory of second branch
Path orphanFile4 = new Path(table.location(), "branch/branch-br2/snapshot/orphan_file4");
branchTable.fileIO().writeFile(orphanFile4, "y", true);
Thread.sleep(2000);

if (ThreadLocalRandom.current().nextBoolean()) {
executeSQL(
Expand Down
Loading