4
pom.xml
4
pom.xml
@@ -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>
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user