Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

unify special chars in index property #1670

Merged
merged 4 commits into from
Nov 25, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
tiny fix
Change-Id: I04b0e2aa058523aa3655063d40f40e6d65185c7f
  • Loading branch information
javeme committed Nov 25, 2021
commit ad622be8b333c7da5c62684ff64a551456a8df6d
Original file line number Diff line number Diff line change
Expand Up @@ -1338,7 +1338,7 @@ protected static List<Condition> constructShardConditions(
String joinedValues;
// 2.1 All fields have equal-conditions
if (prefixes.size() == fields.size()) {
// Prefix numeric values should be converted to sort-able string
// Prefix numeric values should be converted to sortable string
joinedValues = ConditionQuery.concatValues(prefixes);
conditions.add(Condition.eq(key, joinedValues));
return conditions;
Expand Down