Skip to content

Commit

Permalink
Wrap
Browse files Browse the repository at this point in the history
  • Loading branch information
krlmlr committed Oct 27, 2024
1 parent e6e7172 commit 7c10081
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions R/relational.R
Original file line number Diff line number Diff line change
Expand Up @@ -382,8 +382,8 @@ rel_set_alias <- function(rel, alias) {
#' con <- DBI::dbConnect(duckdb())
#' rel <- rel_from_df(con, mtcars)
#' print(rel_to_altrep(rel))
rel_to_altrep <- function(rel) {
rethrow_rapi_rel_to_altrep(rel)
rel_to_altrep <- function(rel, allow_materialization = TRUE) {
rethrow_rapi_rel_to_altrep(rel, allow_materialization)
}


Expand Down Expand Up @@ -475,3 +475,7 @@ rel_names <- function(rel) {
load_rfuns <- function() {
rethrow_rapi_load_rfuns()
}

get_last_rel_mat <- function() {
rethrow_rapi_get_last_rel_mat()
}

0 comments on commit 7c10081

Please sign in to comment.