Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ option (ANALYZE_JAVA

option (BUILD_LIBHDFSPP
"Include LIBHDFSPP library in the build process"
ON)
OFF)

option(BUILD_CPP_TESTS
"Build the googletest unit tests"
Expand Down
4 changes: 2 additions & 2 deletions c++/include/orc/OrcFile.hh
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@ namespace orc {
* @param path the uri of the file in HDFS
* @param metrics the metrics of the reader
*/
std::unique_ptr<InputStream> readHdfsFile(const std::string& path,
ReaderMetrics* metrics = nullptr);
[[deprecated("readHdfsFile is deprecated in 2.0.1")]] std::unique_ptr<InputStream> readHdfsFile(
const std::string& path, ReaderMetrics* metrics = nullptr);

/**
* Create a reader to read the ORC file.
Expand Down