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

Introduce execution hint for Cardinality aggregation #15764

Open
wants to merge 11 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
Forbidden Apis fixed
Signed-off-by: Siddharth Rayabharam <maitreya2954@gmail.com>
  • Loading branch information
maitreya2954 committed Sep 16, 2024
commit a6f3c65e50c018117207fa0a1f1e89b082a76bc2
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public static ExecutionMode fromString(String value) {
return UNSET;
}
try {
return ExecutionMode.valueOf(value.toUpperCase());
return ExecutionMode.valueOf(value.toUpperCase(Locale.ROOT));
} catch (IllegalArgumentException e) {
throw new IllegalArgumentException("Unknown `execution_hint`: [" + value + "], expected any of [direct, ordinals]");
}
Expand Down
Loading