show_exec_plan: Show the details of an Arrow Execution Plan

View source: R/dplyr.R

show_exec_planR Documentation

Show the details of an Arrow Execution Plan

Description

This is a function which gives more details about the logical query plan that will be executed when evaluating an arrow_dplyr_query object. It calls the C++ ExecPlan object's print method. Functionally, it is similar to dplyr::explain(). This function is used as the dplyr::explain() and dplyr::show_query() methods.

Usage

show_exec_plan(x)

Arguments

x

an arrow_dplyr_query to print the ExecPlan for.

Value

x, invisibly.

Examples


library(dplyr)
mtcars %>%
  arrow_table() %>%
  filter(mpg > 20) %>%
  mutate(x = gear / carb) %>%
  show_exec_plan()


arrow documentation built on Nov. 25, 2023, 1:09 a.m.