Skip to content

Commit

Permalink
Fix variable typo in partitioned loader
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelburger committed Apr 19, 2024
1 parent 313f241 commit 56e2373
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/setup-import.R
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ partition_table <- function(x, dir, progress = NULL, chunk_length = 10 ^ 7, temp
for (i in seq_along(file)) {
dat <- readr::read_csv(file[i], col_types = spec, progress = FALSE, ...)
report_problems(dat, rawf[i])
split_write(callback(data), pfun, tempdir, i, progress, name, tick)
split_write(callback(dat), pfun, tempdir, i, progress, name, tick)
}
}

Expand Down

0 comments on commit 56e2373

Please sign in to comment.