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
FWIW any(is.na(X)) is also translated incorrrectly for MSSQL to MAX(CAST(IIF(("X" IS NULL), 1, 0) AS BIT)), which generates error: Operand data type bit is invalid for max operator.
Uh oh!
There was an error while loading. Please reload this page.
FWIW
any(is.na(X))
is also translated incorrrectly for MSSQL toMAX(CAST(IIF(("X" IS NULL), 1, 0) AS BIT))
, which generates error:Operand data type bit is invalid for max operator.
Originally posted by @carlganz in #1239 (comment)
The text was updated successfully, but these errors were encountered: