Skip to content

Commit 92eb404

Browse files
feeblefakiejnmt
andauthored
Backport to branch(3.11) : Fix GetBuilder and ScanBuilder (#2360)
Co-authored-by: Jun Nemoto <[email protected]>
1 parent 1ef4540 commit 92eb404

File tree

1 file changed

+2
-12
lines changed

1 file changed

+2
-12
lines changed

core/src/main/java/com/scalar/db/api/ScanBuilder.java

+2-12
Original file line numberDiff line numberDiff line change
@@ -996,21 +996,11 @@ public static class BuildableScanFromExistingWithOngoingWhere
996996
implements And<BuildableScanFromExistingWithOngoingWhereAnd>,
997997
Or<BuildableScanFromExistingWithOngoingWhereOr> {
998998

999-
private BuildableScanFromExistingWithOngoingWhere(
1000-
BuildableScanOrScanAllFromExisting buildable) {
1001-
super(buildable);
1002-
}
1003-
1004999
private BuildableScanFromExistingWithOngoingWhere(
10051000
BuildableScanOrScanAllFromExisting buildable, ConditionalExpression condition) {
10061001
super(buildable, condition);
10071002
}
10081003

1009-
private BuildableScanFromExistingWithOngoingWhere(
1010-
BuildableScanFromExistingWithOngoingWhere buildable) {
1011-
super(buildable);
1012-
}
1013-
10141004
@Override
10151005
public BuildableScanFromExistingWithOngoingWhereAnd and(ConditionalExpression condition) {
10161006
checkNotNull(condition);
@@ -1041,7 +1031,7 @@ public BuildableScanFromExistingWithOngoingWhereOr or(AndConditionSet andConditi
10411031
}
10421032

10431033
public static class BuildableScanFromExistingWithOngoingWhereOr
1044-
extends BuildableScanFromExistingWithOngoingWhere
1034+
extends BuildableScanFromExistingWithWhere
10451035
implements Or<BuildableScanFromExistingWithOngoingWhereOr> {
10461036

10471037
private BuildableScanFromExistingWithOngoingWhereOr(
@@ -1077,7 +1067,7 @@ public BuildableScanFromExistingWithOngoingWhereOr or(AndConditionSet andConditi
10771067
}
10781068

10791069
public static class BuildableScanFromExistingWithOngoingWhereAnd
1080-
extends BuildableScanFromExistingWithOngoingWhere
1070+
extends BuildableScanFromExistingWithWhere
10811071
implements And<BuildableScanFromExistingWithOngoingWhereAnd> {
10821072

10831073
private BuildableScanFromExistingWithOngoingWhereAnd(

0 commit comments

Comments
 (0)