pkgdown/mathjax-config.html
R/collect.R
collect.Rd
Pulls all batches from the execution plan and materializes the result as an R data.frame.
collect(x, ...)
A vectra_node object.
vectra_node
Ignored.
A data.frame with the query results.
f <- tempfile(fileext = ".vtr") write_vtr(mtcars, f) result <- tbl(f) |> collect() head(result) unlink(f)