Skip to content

Commit d2c5083

Browse files
authored
Bump Couchbase SDK to 3_4_7. (#1780)
Closes #1754.
1 parent 25f86b4 commit d2c5083

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
</parent>
1919

2020
<properties>
21-
<couchbase>3.4.6</couchbase>
22-
<couchbase.osgi>3.4.6</couchbase.osgi>
21+
<couchbase>3.4.7</couchbase>
22+
<couchbase.osgi>3.4.7</couchbase.osgi>
2323
<springdata.commons>3.0.8-SNAPSHOT</springdata.commons>
2424
<java-module-name>spring.data.couchbase</java-module-name>
2525
<hibernate.validator>7.0.1.Final</hibernate.validator>

src/main/java/org/springframework/data/couchbase/core/ReactiveRangeScanOperationSupport.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,8 @@ Flux<T> rangeScan(String lower, String upper, boolean isSamplingScan, Long limit
149149
if(isSamplingScan){
150150
scanType = ScanType.samplingScan(limit, seed != null ? seed : 0);
151151
} else {
152-
ScanTerm lowerTerm = ScanTerm.minimum();
153-
ScanTerm upperTerm = ScanTerm.maximum();
152+
ScanTerm lowerTerm = null;
153+
ScanTerm upperTerm = null;
154154
if (lower != null) {
155155
lowerTerm = ScanTerm.inclusive(lower);
156156
}
@@ -198,8 +198,8 @@ Flux<String> rangeScanIds(String lower, String upper, boolean isSamplingScan, Lo
198198
if(isSamplingScan){
199199
scanType = ScanType.samplingScan(limit, seed != null ? seed : 0);
200200
} else {
201-
ScanTerm lowerTerm = ScanTerm.minimum();
202-
ScanTerm upperTerm = ScanTerm.maximum();
201+
ScanTerm lowerTerm = null;
202+
ScanTerm upperTerm = null;
203203
if (lower != null) {
204204
lowerTerm = ScanTerm.inclusive(lower);
205205
}

0 commit comments

Comments
 (0)