diff --git a/src/main/java/datawave/accumulo/inmemory/InMemoryScannerBase.java b/src/main/java/datawave/accumulo/inmemory/InMemoryScannerBase.java index 46eb346..5a89101 100644 --- a/src/main/java/datawave/accumulo/inmemory/InMemoryScannerBase.java +++ b/src/main/java/datawave/accumulo/inmemory/InMemoryScannerBase.java @@ -99,6 +99,10 @@ public boolean isFullMajorCompaction() { return false; } + public boolean isUserCompaction() { + return false; + } + private ArrayList> topLevelIterators = new ArrayList<>(); @Override diff --git a/src/main/java/datawave/accumulo/inmemory/InMemoryTableOperations.java b/src/main/java/datawave/accumulo/inmemory/InMemoryTableOperations.java index 69f8684..1603038 100644 --- a/src/main/java/datawave/accumulo/inmemory/InMemoryTableOperations.java +++ b/src/main/java/datawave/accumulo/inmemory/InMemoryTableOperations.java @@ -500,6 +500,11 @@ public void importTable(String tableName, Set importDirs, ImportConfigur 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 { throw new UnsupportedOperationException();