Skip to content

Commit

Permalink
Update methods to match usage
Browse files Browse the repository at this point in the history
  • Loading branch information
alerman committed Sep 30, 2024
1 parent da2a22d commit eb19caa
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,10 @@ public IteratorScope getIteratorScope() {
public boolean isFullMajorCompaction() {
return false;
}

public boolean isUserCompaction() {
return false;
}

private ArrayList<SortedKeyValueIterator<Key,Value>> topLevelIterators = new ArrayList<>();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -499,6 +499,11 @@ public void importTable(String tableName, Set<String> importDirs, ImportConfigur
throws TableExistsException, AccumuloException, AccumuloSecurityException {
throw new UnsupportedOperationException();
}

public void importTable(String tableName, String importDir, boolean keepMappings, boolean skipOnline)
throws TableExistsException, AccumuloException, AccumuloSecurityException {
throw new UnsupportedOperationException();
}

@Override
public void exportTable(String tableName, String exportDir) throws TableNotFoundException, AccumuloException, AccumuloSecurityException {
Expand Down

0 comments on commit eb19caa

Please sign in to comment.