Skip to content

Commit

Permalink
adding lazy eval
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonGreenhill committed Sep 14, 2024
1 parent 3979a89 commit 503600e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions R/csvwr_overrides.R
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,10 @@ add_dataframe <- function(table, filename, group) {
readr::read_delim(
filename,
trim_ws=TRUE,
skip=dialect$headerRowCount,
skip=dialect$headerRowCount, # causes more problems than it's worth?
col_names=column_names,
col_types=column_types)
col_types=column_types,
lazy=TRUE)
}


Expand Down

0 comments on commit 503600e

Please sign in to comment.