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
Very few Snowflake-specific translations are currently included in dbplyr, leading to breakage when using common features available with other backends:
dbplyr::translate_sql(grepl('pattern', x), con=dbplyr::simulate_snowflake())
#> <SQL> grepl('pattern', `x`)dbplyr::translate_sql(str_flatten(x), con=dbplyr::simulate_snowflake())
#> Error in `str_flatten()`:#> ! str_flatten() is not available in this SQL variantdbplyr::translate_sql(days(x), con=dbplyr::simulate_snowflake())
#> <SQL> days(`x`)
The text was updated successfully, but these errors were encountered:
Very few Snowflake-specific translations are currently included in dbplyr, leading to breakage when using common features available with other backends:
The text was updated successfully, but these errors were encountered: