Skip to content

Commit

Permalink
Minor missing changes.
Browse files Browse the repository at this point in the history
Signed-off-by: Yury-Fridlyand <yury.fridlyand@improving.com>
  • Loading branch information
Yury-Fridlyand committed Mar 25, 2023
1 parent 4213388 commit ca20d16
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,6 @@ public Boolean visitRelation(Relation node, Object context) {
return Boolean.FALSE;
}

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -846,7 +846,7 @@ public static List<List<String>> getPermutations(final List<String> items) {

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

Expand Down

0 comments on commit ca20d16

Please sign in to comment.