Skip to content

Commit

Permalink
Minimise diff
Browse files Browse the repository at this point in the history
Signed-off-by: Andy Kwok <[email protected]>
  • Loading branch information
andy-k-improving committed Jan 28, 2025
1 parent c3a9348 commit 89f33e5
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,8 @@ public OpenSearchFunction(FunctionName functionName, List<Expression> arguments)
public ExprValue valueOf(Environment<Expression, ExprValue> valueEnv) {
throw new UnsupportedOperationException(
String.format(
"OpenSearch defined function [%s] is only supported in WHERE and HAVING clause.",
functionName));
"OpenSearch defined function [%s] is only supported in WHERE and HAVING clause.",
functionName));
}

@Override
Expand All @@ -164,7 +164,7 @@ public String toString() {
List<String> args =
arguments.stream()
.map(
arg ->
arg ->
String.format(
"%s=%s",
((NamedArgumentExpression) arg).getArgName(),
Expand Down

0 comments on commit 89f33e5

Please sign in to comment.