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 06:00:12 UTC

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

     [ https://issues.apache.org/jira/browse/ARROW-6641?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Karthikeyan Natarajan updated ARROW-6641:
-----------------------------------------
    Description: 
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}
 

 

  was:
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}
 

 


> 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)