You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
where sc != null ? sc.Value : "NeverHappen" will always take true branch, so we don't need to generate CASE expression and could emit only TRUE branch (sc.Value)
The text was updated successfully, but these errors were encountered:
Post-#4533 task
E.g. we have test
TestConditionalInProjection
where
sc != null ? sc.Value : "NeverHappen"
will always taketrue
branch, so we don't need to generateCASE
expression and could emit onlyTRUE
branch (sc.Value
)The text was updated successfully, but these errors were encountered: