Skip to content

Commit 5422363

Browse files
committed
Fix incomplete rename refactor
1 parent 436fbba commit 5422363

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

R/epi_slide_opt_archive.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ epi_slide_opt_archive_one_epikey <- function(
127127
!is.na(slide_inp_backrefs)
128128
}
129129
out_update <- slide[rows_should_keep, ]
130-
out_diff <- tbl_diff2_alt2(prev_out_snapshot, out_update, "time_value", "update")
130+
out_diff <- tbl_diff2(prev_out_snapshot, out_update, "time_value", "update")
131131
prev_inp_snapshot <<- inp_snapshot
132132
prev_out_snapshot <<- tbl_patch(prev_out_snapshot, out_diff, "time_value")
133133
out_diff$version <- version

R/patch.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ tbl_fast_anti_join <- function(x, y, ukey_names, val_names, abs_tol = 0) {
233233
na_equal = TRUE, abs_tol = abs_tol
234234
)
235235
}
236-
vec_slice(x_orig, !x_exclude)
236+
vec_slice(x, !x_exclude)
237237
}
238238

239239
#' Calculate compact patch to move from one snapshot/update to another

0 commit comments

Comments
 (0)