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
Add support for translating SQL CASE expressions to R expressions that use dplyr::case_when() in the tidyverse = TRUE case. This should support both forms of the SQL CASE expression:
CASE a
WHEN b THEN c
WHEN d THEN e
ELSE f
END
CASE
WHEN a == b THEN c
WHEN a == d THEN e
ELSE f
END
The text was updated successfully, but these errors were encountered:
Add support for translating SQL
CASE
expressions to R expressions that usedplyr::case_when()
in thetidyverse = TRUE
case. This should support both forms of the SQLCASE
expression:The text was updated successfully, but these errors were encountered: