You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by th...@apache.org on 2023/06/29 07:29:22 UTC

[arrow] branch main updated: GH-36353: [R] Fix package version references to be text only and never numeric (#36364)

This is an automated email from the ASF dual-hosted git repository.

thisisnic pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/main by this push:
     new 8fdbb080c8 GH-36353: [R] Fix package version references to be text only and never numeric (#36364)
8fdbb080c8 is described below

commit 8fdbb080c8a5aa7b85d5309f6e3e4db7ba302731
Author: Nic Crane <th...@gmail.com>
AuthorDate: Thu Jun 29 08:29:16 2023 +0100

    GH-36353: [R] Fix package version references to be text only and never numeric (#36364)
    
    Fixes #36353
    * Closes: #36353
    
    Authored-by: Nic Crane <th...@gmail.com>
    Signed-off-by: Nic Crane <th...@gmail.com>
---
 r/R/duckdb.R | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/r/R/duckdb.R b/r/R/duckdb.R
index f587ff4d82..84c738359d 100644
--- a/r/R/duckdb.R
+++ b/r/R/duckdb.R
@@ -95,7 +95,7 @@ run_duckdb_examples <- function() {
     packageVersion("duckdb") > "0.2.7" &&
     requireNamespace("dplyr", quietly = TRUE) &&
     requireNamespace("dbplyr", quietly = TRUE) &&
-    getRversion() >= 4
+    getRversion() >= "4"
 }
 
 # Adapted from dbplyr