Skip to content

Commit

Permalink
[native] Add support for ORC reader and add orc native tests
Browse files Browse the repository at this point in the history
  • Loading branch information
wypb committed Feb 10, 2025
1 parent bbd737a commit ef5a553
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions presto-native-execution/presto_cpp/main/PrestoServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
#include "velox/connectors/tpch/TpchConnector.h"
#include "velox/dwio/dwrf/RegisterDwrfReader.h"
#include "velox/dwio/dwrf/RegisterDwrfWriter.h"
#include "velox/dwio/orc/reader/OrcReader.h"
#include "velox/dwio/parquet/RegisterParquetReader.h"
#include "velox/dwio/parquet/RegisterParquetWriter.h"
#include "velox/exec/OutputBufferManager.h"
Expand Down Expand Up @@ -1391,6 +1392,7 @@ void PrestoServer::registerMemoryArbitrators() {
void PrestoServer::registerFileReadersAndWriters() {
velox::dwrf::registerDwrfReaderFactory();
velox::dwrf::registerDwrfWriterFactory();
velox::dwrf::registerOrcReaderFactory();
velox::parquet::registerParquetReaderFactory();
velox::parquet::registerParquetWriterFactory();
}
Expand Down

0 comments on commit ef5a553

Please sign in to comment.