You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ro...@apache.org on 2019/06/12 11:37:12 UTC

[arrow] branch master updated: ARROW-3780 [R]: Failed to fetch data: invalid data when collecting int16

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 2cb776d  ARROW-3780 [R]: Failed to fetch data: invalid data when collecting int16
2cb776d is described below

commit 2cb776d6aa95cbc32da45cd72990d273cdc0c82f
Author: Romain Francois <ro...@rstudio.com>
AuthorDate: Wed Jun 12 13:37:00 2019 +0200

    ARROW-3780 [R]: Failed to fetch data: invalid data when collecting int16
    
    same as #4505 which for some reason has disappeared
    
    Author: Romain Francois <ro...@rstudio.com>
    
    Closes #4529 from romainfrancois/ARROW-3780/STOP_IF_NULL and squashes the following commits:
    
    ca9caf26 <Romain Francois> STOP_IF_NULL() macro is never used
---
 r/src/arrow_types.h | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/r/src/arrow_types.h b/r/src/arrow_types.h
index 867a89f..ca1e2d6 100644
--- a/r/src/arrow_types.h
+++ b/r/src/arrow_types.h
@@ -43,11 +43,6 @@ struct symbols {
 #define STOP_IF_NOT_OK(s) STOP_IF_NOT(s.ok(), s.ToString())
 
 template <typename T>
-inline void STOP_IF_NULL(T* ptr) {
-  STOP_IF_NOT(ptr, "invalid data");
-}
-
-template <typename T>
 struct NoDelete {
   inline void operator()(T* ptr) {}
 };