Skip to content

Commit

Permalink
Merge pull request #3279 from atlanhq/beta-DG-1442_3-helper2
Browse files Browse the repository at this point in the history
Fixed attribute name in dsl query regarding custom sort
  • Loading branch information
hr2904 authored Jun 25, 2024
2 parents 05a40f5 + edba0fd commit a2d7a3c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public enum MigrationStatus {
public static final int PRE_DELIMITER_LENGTH = 9;
public static final String LEXORANK_HARD_LIMIT = "" + (256 - PRE_DELIMITER_LENGTH);
public static final String LEXORANK_VALID_REGEX = "^0\\|[0-9a-z]{6}:(?:[0-9a-z]{0," + LEXORANK_HARD_LIMIT + "})?$";
public static final Set<String> ATTRIBUTES = new HashSet<>(Arrays.asList("LEXICOGRAPHICAL_SORT_ORDER"));
public static final Set<String> ATTRIBUTES = new HashSet<>(Arrays.asList("lexicographicalSortOrder"));

public static final Pattern LEXORANK_VALIDITY_PATTERN = Pattern.compile(LEXORANK_VALID_REGEX);

Expand Down

0 comments on commit a2d7a3c

Please sign in to comment.