Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
melin committed Feb 23, 2024
1 parent 5563cc0 commit be5c80b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -809,7 +809,7 @@ public Type visitSearchedCaseExpression(SearchedCaseExpression node, StackableAs
Type type = UNKNOWN;
setExpressionType(node, type);

for (WhenClause whenClause : node.getWhenClauses()) a{
for (WhenClause whenClause : node.getWhenClauses()) {
Type whenClauseType = process(whenClause.getResult(), context);
setExpressionType(whenClause, whenClauseType);
}
Expand Down

0 comments on commit be5c80b

Please sign in to comment.