Hi

The base R max function is not supported when used within `filter`:

library(arrow)
tbl <- arrow_table(name = rownames(mtcars), mtcars)

tbl |>
filter(mpg > max(mpg)) |>
collect()
Warning: Expression mpg > max(mpg) not supported in Arrow; pulling data
into R

but this works:

tbl |>
summarize(x = max(mpg))

Should this be supported or am I missing something

Thanks for the help
David

Reply via email to