File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
main/java/me/retrodaredevil/couchdbjava
test/java/me/retrodaredevil/couchdbjava/integration/test Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,9 @@ public interface CouchDbDatabase extends CouchDbShared {
29
29
default boolean createIfNotExists () throws CouchDbException { return createIfNotExists (DatabaseCreationOption .createDefault ()); }
30
30
void deleteDatabase () throws CouchDbException ;
31
31
32
+ /**
33
+ * Note: As of 2023.04.21 this does not work on PouchDB
34
+ */
32
35
DatabaseInfo getDatabaseInfo () throws CouchDbException ;
33
36
34
37
/**
Original file line number Diff line number Diff line change @@ -37,6 +37,5 @@ void test(DatabaseService databaseService) throws CouchDbException {
37
37
database .create (DatabaseCreationOption .builder ().build ());
38
38
assertThrows (CouchDbNotFoundException .class , () -> database .getRevsLimit ());
39
39
}
40
- database .getDatabaseInfo ();
41
40
}
42
41
}
You can’t perform that action at this time.
0 commit comments