Skip to content

Commit

Permalink
duckplyr compat
Browse files Browse the repository at this point in the history
  • Loading branch information
krlmlr committed Oct 26, 2024
1 parent 3b53ba7 commit 51df516
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion R/cpp11.R
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,8 @@ rapi_rel_from_table_function <- function(con, function_name, positional_paramete
.Call(`_duckdb_rapi_rel_from_table_function`, con, function_name, positional_parameters_sexps, named_parameters_sexps)
}

rapi_rel_to_altrep <- function(rel, allow_materialization) {
# allow_materialization = TRUE: compatibility with duckplyr <= 0.4.1
rapi_rel_to_altrep <- function(rel, allow_materialization = TRUE) {
.Call(`_duckdb_rapi_rel_to_altrep`, rel, allow_materialization)
}

Expand Down

0 comments on commit 51df516

Please sign in to comment.