From 713df1c60ef7f725e02a3f77b1dc4ee6e0af7826 Mon Sep 17 00:00:00 2001 From: Michael Chirico Date: Thu, 21 May 2026 08:10:19 -0700 Subject: [PATCH 1/2] Replace imported symbol from bit64 --- r/NAMESPACE | 3 +-- r/R/arrow-package.R | 1 + r/R/reexports-bit64.R | 22 ---------------------- r/man/reexports.Rd | 4 ---- 4 files changed, 2 insertions(+), 28 deletions(-) delete mode 100644 r/R/reexports-bit64.R diff --git a/r/NAMESPACE b/r/NAMESPACE index f42944fb58b5..f74034c965b7 100644 --- a/r/NAMESPACE +++ b/r/NAMESPACE @@ -427,8 +427,7 @@ export(write_tsv_dataset) importFrom(R6,R6Class) importFrom(assertthat,assert_that) importFrom(assertthat,is.string) -importFrom(bit64,print.integer64) -importFrom(bit64,str.integer64) +importFrom(bit64,integer64) importFrom(glue,glue) importFrom(methods,as) importFrom(purrr,as_mapper) diff --git a/r/R/arrow-package.R b/r/R/arrow-package.R index 750aff3f3b44..2706faee5cb1 100644 --- a/r/R/arrow-package.R +++ b/r/R/arrow-package.R @@ -30,6 +30,7 @@ #' @importFrom rlang is_bare_list call_name #' @importFrom tidyselect vars_pull eval_select eval_rename #' @importFrom glue glue +#' @importFrom bit64 integer64 #' @useDynLib arrow, .registration = TRUE #' @keywords internal "_PACKAGE" diff --git a/r/R/reexports-bit64.R b/r/R/reexports-bit64.R deleted file mode 100644 index c89d2b1509bf..000000000000 --- a/r/R/reexports-bit64.R +++ /dev/null @@ -1,22 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License. - -#' @importFrom bit64 print.integer64 -bit64::print.integer64 - -#' @importFrom bit64 str.integer64 -bit64::str.integer64 diff --git a/r/man/reexports.Rd b/r/man/reexports.Rd index 591158c72f4c..c02ce79f87e8 100644 --- a/r/man/reexports.Rd +++ b/r/man/reexports.Rd @@ -3,8 +3,6 @@ \docType{import} \name{reexports} \alias{reexports} -\alias{print.integer64} -\alias{str.integer64} \alias{contains} \alias{select_helpers} \alias{ends_with} @@ -22,8 +20,6 @@ These objects are imported from other packages. Follow the links below to see their documentation. \describe{ - \item{bit64}{\code{\link[bit64:bit64-package]{print.integer64}}, \code{\link[bit64:bit64-package]{str.integer64}}} - \item{tidyselect}{\code{\link[tidyselect]{all_of}}, \code{\link[tidyselect:starts_with]{contains}}, \code{\link[tidyselect:starts_with]{ends_with}}, \code{\link[tidyselect]{everything}}, \code{\link[tidyselect:everything]{last_col}}, \code{\link[tidyselect:starts_with]{matches}}, \code{\link[tidyselect:starts_with]{num_range}}, \code{\link[tidyselect]{one_of}}, \code{\link[tidyselect]{starts_with}}} }} From 16c745954862b88206b7102bc2590ac2031c9eed Mon Sep 17 00:00:00 2001 From: Michael Chirico Date: Thu, 21 May 2026 09:20:53 -0700 Subject: [PATCH 2/2] remove deleted file from Collate --- r/DESCRIPTION | 1 - 1 file changed, 1 deletion(-) diff --git a/r/DESCRIPTION b/r/DESCRIPTION index c76dfc5572fe..b65c95accab0 100644 --- a/r/DESCRIPTION +++ b/r/DESCRIPTION @@ -147,7 +147,6 @@ Collate: 'query-engine.R' 'record-batch-reader.R' 'record-batch-writer.R' - 'reexports-bit64.R' 'reexports-tidyselect.R' 'schema.R' 'udf.R'