diff --git a/R/pkg-arrow.R b/R/pkg-arrow.R index 74b43add..f53a0336 100644 --- a/R/pkg-arrow.R +++ b/R/pkg-arrow.R @@ -317,7 +317,7 @@ arrow_funs[["ceiling"]] <- function(x) { "rounding.ceil", x, .options = list( - substrait$FunctionOption$create(name = "rounding",preference = "TIE_TO_EVEN") + substrait$FunctionOption$create(name = "rounding", preference = "TIE_TO_EVEN") ), .output_type = substrait_fp64() ) @@ -328,7 +328,7 @@ arrow_funs[["floor"]] <- function(x) { "rounding.floor", x, .options = list( - substrait$FunctionOption$create(name = "rounding",preference = "TIE_TO_EVEN") + substrait$FunctionOption$create(name = "rounding", preference = "TIE_TO_EVEN") ), .output_type = substrait_fp64() ) diff --git a/tests/testthat/test-pkg-duckdb.R b/tests/testthat/test-pkg-duckdb.R index fda07609..700a6b29 100644 --- a/tests/testthat/test-pkg-duckdb.R +++ b/tests/testthat/test-pkg-duckdb.R @@ -402,5 +402,4 @@ test_that("duckdb translation for round works", { y = c(1, 2, 3, 4) ) ) - })