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
The first patch simplifies the SQL transformation function.
The second patch has the following effect:
Change all (case when ... then ... else ... end) expressions into something like:
IIf(IsNull(Switch(when_1, then_1, ... when_n, then_n)), else, Switch(when_1, then_1, ... when_n, then_n))
or (when no "else" part exists):
Switch(when_1, then_1, ... when_n, then_n)
Mark Junker created issue - 21/Oct/11 12:25 AM
Mark Junker added a comment - 24/Oct/11 9:07 PM
Mark Junker added a comment - 25/Oct/11 10:31 PM
Mark Junker added a comment - 25/Oct/11 10:34 PM
The text was updated successfully, but these errors were encountered: