explain: Print the execution plan for a vectra query

View source: R/explain.R

explainR Documentation

Print the execution plan for a vectra query

Description

Shows the node types, column schemas, and structure of the lazy query plan.

Usage

explain(x, ...)

Arguments

x

A vectra_node object.

...

Ignored.

Value

Invisible x.

Examples

f <- tempfile(fileext = ".vtr")
write_vtr(mtcars, f)
tbl(f) |> filter(cyl > 4) |> select(mpg, cyl) |> explain()
unlink(f)


vectra documentation built on May 8, 2026, 9:06 a.m.