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
I have a package RPresto that extends the db_sql_render() generic for Presto connections (code link). The extended db_sql_render() function has an added argument, use_presto_cte. The call stack goes from dbplyr::db_sql_render() to RPresto::db_sql_render.PrestoConnection(), so the passing of the use_presto_cte arg relies on the three dot ellipsis in dbplyr::db_sql_render(). However, in dbplyr 2.4.0, db_sql_render() doesn't pass on the ellipsis (see code link).
Happy to provide a quick PR to add the ellipsis passing to the function.
The text was updated successfully, but these errors were encountered:
I have a package
RPresto
that extends thedb_sql_render()
generic for Presto connections (code link). The extendeddb_sql_render()
function has an added argument,use_presto_cte
. The call stack goes fromdbplyr::db_sql_render()
toRPresto::db_sql_render.PrestoConnection()
, so the passing of theuse_presto_cte
arg relies on the three dot ellipsis indbplyr::db_sql_render()
. However, in dbplyr 2.4.0,db_sql_render()
doesn't pass on the ellipsis (see code link).Happy to provide a quick PR to add the ellipsis passing to the function.
The text was updated successfully, but these errors were encountered: