Skip to content

Commit ca20d16

Browse files
Minor missing changes.
Signed-off-by: Yury-Fridlyand <[email protected]>
1 parent 4213388 commit ca20d16

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

core/src/main/java/org/opensearch/sql/executor/CanPaginateVisitor.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,6 @@ public Boolean visitRelation(Relation node, Object context) {
3333
return Boolean.FALSE;
3434
}
3535

36-
// TODO use storageEngine from the calling PaginatedPlanCache to determine if
37-
// node.getTableQualifiedName is provided by the storage engine. Return false if it's
38-
// not the case.
3936
return Boolean.TRUE;
4037
}
4138

integ-test/src/test/java/org/opensearch/sql/util/TestUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -846,7 +846,7 @@ public static List<List<String>> getPermutations(final List<String> items) {
846846

847847
public static void verifyIsV1Cursor(JSONObject response) {
848848
var legacyCursorPrefixes = Arrays.stream(CursorType.values())
849-
.map(c -> c.toString() + ":").collect(Collectors.toList());
849+
.map(c -> c.getId() + ":").collect(Collectors.toList());
850850
verifyCursor(response, legacyCursorPrefixes, "v1");
851851
}
852852

0 commit comments

Comments
 (0)