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

@@ -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);
}