4
pom.xml
4
pom.xml
@@ -18,8 +18,8 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<couchbase>3.4.6</couchbase>
|
<couchbase>3.4.7</couchbase>
|
||||||
<couchbase.osgi>3.4.6</couchbase.osgi>
|
<couchbase.osgi>3.4.7</couchbase.osgi>
|
||||||
<springdata.commons>3.2.0-SNAPSHOT</springdata.commons>
|
<springdata.commons>3.2.0-SNAPSHOT</springdata.commons>
|
||||||
<java-module-name>spring.data.couchbase</java-module-name>
|
<java-module-name>spring.data.couchbase</java-module-name>
|
||||||
<hibernate.validator>7.0.1.Final</hibernate.validator>
|
<hibernate.validator>7.0.1.Final</hibernate.validator>
|
||||||
|
|||||||
@@ -149,8 +149,8 @@ public class ReactiveRangeScanOperationSupport implements ReactiveRangeScanOpera
|
|||||||
if(isSamplingScan){
|
if(isSamplingScan){
|
||||||
scanType = ScanType.samplingScan(limit, seed != null ? seed : 0);
|
scanType = ScanType.samplingScan(limit, seed != null ? seed : 0);
|
||||||
} else {
|
} else {
|
||||||
ScanTerm lowerTerm = ScanTerm.minimum();
|
ScanTerm lowerTerm = null;
|
||||||
ScanTerm upperTerm = ScanTerm.maximum();
|
ScanTerm upperTerm = null;
|
||||||
if (lower != null) {
|
if (lower != null) {
|
||||||
lowerTerm = ScanTerm.inclusive(lower);
|
lowerTerm = ScanTerm.inclusive(lower);
|
||||||
}
|
}
|
||||||
@@ -198,8 +198,8 @@ public class ReactiveRangeScanOperationSupport implements ReactiveRangeScanOpera
|
|||||||
if(isSamplingScan){
|
if(isSamplingScan){
|
||||||
scanType = ScanType.samplingScan(limit, seed != null ? seed : 0);
|
scanType = ScanType.samplingScan(limit, seed != null ? seed : 0);
|
||||||
} else {
|
} else {
|
||||||
ScanTerm lowerTerm = ScanTerm.minimum();
|
ScanTerm lowerTerm = null;
|
||||||
ScanTerm upperTerm = ScanTerm.maximum();
|
ScanTerm upperTerm = null;
|
||||||
if (lower != null) {
|
if (lower != null) {
|
||||||
lowerTerm = ScanTerm.inclusive(lower);
|
lowerTerm = ScanTerm.inclusive(lower);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user