You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@arrow.apache.org by "Paul Taylor (Jira)" <ji...@apache.org> on 2019/09/21 04:51:00 UTC

[jira] [Commented] (ARROW-6641) Remove Deprecated WriteableFile warning

    [ https://issues.apache.org/jira/browse/ARROW-6641?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16934910#comment-16934910 ] 

Paul Taylor commented on ARROW-6641:
------------------------------------

I think this was addressed by [e41ad0d2|https://github.com/apache/arrow/commit/e41ad0d2ccaf96812d902b161d8a0b2b372f1b72] which should make it into the 0.15 release.

> Remove Deprecated WriteableFile warning
> ---------------------------------------
>
>                 Key: ARROW-6641
>                 URL: https://issues.apache.org/jira/browse/ARROW-6641
>             Project: Apache Arrow
>          Issue Type: Bug
>          Components: C++
>    Affects Versions: 0.14.0, 0.14.1
>            Reporter: Karthikeyan Natarajan
>            Priority: Major
>              Labels: newbie
>
> Current version is 0.14.1. As per comment, deprecated `WriteableFile` should be removed. 
>  
> {code:java}
> // TODO(kszucs): remove this after 0.13
> #ifndef _MSC_VER
> using WriteableFile ARROW_DEPRECATED("Use WritableFile") = WritableFile;
> using ReadableFileInterface ARROW_DEPRECATED("Use RandomAccessFile") = RandomAccessFile;
> #else
> // MSVC does not like using ARROW_DEPRECATED with using declarations
> using WriteableFile = WritableFile;
> using ReadableFileInterface = RandomAccessFile;
> #endif
> {code}
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)