You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implemented a new count method that accepts a SelectQuery
object, allowing for more flexible counting of query results
in the DefaultOracleNoSQLDocumentManager.
Signed-off-by: Maximillian Arruda <[email protected]>
Copy file name to clipboardExpand all lines: jnosql-oracle-nosql/src/main/java/org/eclipse/jnosql/databases/oracle/communication/DefaultOracleNoSQLDocumentManager.java
+21-3Lines changed: 21 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -178,13 +178,11 @@ public Stream<CommunicationEntity> select(SelectQuery query) {
178
178
returnentities.stream();
179
179
}
180
180
181
-
182
-
183
181
@Override
184
182
publiclongcount(StringdocumentCollection) {
185
183
Objects.requireNonNull(documentCollection, "documentCollection is required");
186
184
187
-
varprepReq = newPrepareRequest().setStatement("select count(*) as count from " + name() + " where " +
185
+
varprepReq = newPrepareRequest().setStatement("select count(*) as count from " + name() + " where " +
0 commit comments