Skip to content

Commit

Permalink
publish x.x.21
Browse files Browse the repository at this point in the history
  • Loading branch information
firestar committed Dec 26, 2023
1 parent 66c76e9 commit 9f8c2d7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = 'com.nucleodb'
version = '1.13.20'
version = '1.13.21'

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ public TreeIndex() {
super(null);
}



private boolean unique;
private TreeMap<T, List<Object>> reverseMap = new TreeMap<>();
private TreeMap<Object, Set<T>> index = new TreeMap<>();
Expand Down
6 changes: 5 additions & 1 deletion src/test/java/com/nucleodb/library/NucleoDBReadToTime.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,11 @@ public void readOnlyDB() throws IncorrectDataEntryObjectException, InterruptedEx
NucleoDB nucleoDB = new NucleoDB(
NucleoDB.DBType.READ_ONLY,
c -> c.getConnectionConfig().setMqsConfiguration(new LocalConfiguration()),
c -> c.getDataTableConfig().setMqsConfiguration(new LocalConfiguration()),
c -> {
if(c.getClazz() == Author.class){
c.getDataTableConfig().setMqsConfiguration(new LocalConfiguration());
}
},
"com.nucleodb.library.helpers.models"
);
DataTable table = nucleoDB.getTable(Author.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
import com.nucleodb.library.database.modifications.Create;
import com.nucleodb.library.database.tables.table.DataEntry;

import java.util.UUID;

public class AuthorDE extends DataEntry<Author>{
public AuthorDE(Author obj) {
super(obj);
Expand Down

0 comments on commit 9f8c2d7

Please sign in to comment.