Bump Couchbase SDK to 3_4_7. (#1780)

Closes #1754.
This commit is contained in:
Michael Reiche
2023-07-11 11:28:08 -07:00
committed by GitHub
parent 25f86b46b4
commit d2c50837da
2 changed files with 6 additions and 6 deletions

View File

@@ -18,8 +18,8 @@
</parent>
<properties>
<couchbase>3.4.6</couchbase>
<couchbase.osgi>3.4.6</couchbase.osgi>
<couchbase>3.4.7</couchbase>
<couchbase.osgi>3.4.7</couchbase.osgi>
<springdata.commons>3.0.8-SNAPSHOT</springdata.commons>
<java-module-name>spring.data.couchbase</java-module-name>
<hibernate.validator>7.0.1.Final</hibernate.validator>

View File

@@ -149,8 +149,8 @@ public class ReactiveRangeScanOperationSupport implements ReactiveRangeScanOpera
if(isSamplingScan){
scanType = ScanType.samplingScan(limit, seed != null ? seed : 0);
} else {
ScanTerm lowerTerm = ScanTerm.minimum();
ScanTerm upperTerm = ScanTerm.maximum();
ScanTerm lowerTerm = null;
ScanTerm upperTerm = null;
if (lower != null) {
lowerTerm = ScanTerm.inclusive(lower);
}
@@ -198,8 +198,8 @@ public class ReactiveRangeScanOperationSupport implements ReactiveRangeScanOpera
if(isSamplingScan){
scanType = ScanType.samplingScan(limit, seed != null ? seed : 0);
} else {
ScanTerm lowerTerm = ScanTerm.minimum();
ScanTerm upperTerm = ScanTerm.maximum();
ScanTerm lowerTerm = null;
ScanTerm upperTerm = null;
if (lower != null) {
lowerTerm = ScanTerm.inclusive(lower);
}