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

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

Karthikeyan Natarajan created ARROW-6641:
--------------------------------------------

             Summary: 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.1, 0.14.0
            Reporter: Karthikeyan Natarajan


Current version is 0.14.1. As per comment, deprecated `WriteableFile` should have been 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)