Skip to content

Commit

Permalink
[native] Advance velox.
Browse files Browse the repository at this point in the history
  • Loading branch information
amitkdutta committed Aug 7, 2024
1 parent 937e863 commit 83a82cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion presto-native-execution/velox
Submodule velox updated 34 files
+1 −1 .github/workflows/linux-build.yml
+0 −1 velox/common/base/CMakeLists.txt
+0 −91 velox/common/base/GenericAdmissionController.cpp
+0 −63 velox/common/base/GenericAdmissionController.h
+0 −1 velox/common/base/tests/CMakeLists.txt
+0 −75 velox/common/base/tests/GenericAdmissionControllerTest.cpp
+40 −12 velox/common/memory/Memory.cpp
+6 −0 velox/common/memory/Memory.h
+8 −49 velox/common/memory/MemoryArbitrator.h
+63 −1 velox/common/memory/SharedArbitrator.cpp
+59 −0 velox/common/memory/SharedArbitrator.h
+1 −4 velox/common/memory/tests/MemoryArbitratorTest.cpp
+1 −2 velox/common/memory/tests/MemoryManagerTest.cpp
+85 −0 velox/common/memory/tests/MockSharedArbitratorTest.cpp
+3 −25 velox/connectors/hive/HiveConnector.cpp
+2 −2 velox/connectors/hive/storage_adapters/abfs/RegisterAbfsFileSystem.cpp
+2 −2 velox/connectors/hive/storage_adapters/gcs/RegisterGCSFileSystem.cpp
+2 −2 velox/connectors/hive/storage_adapters/hdfs/RegisterHdfsFileSystem.cpp
+4 −4 velox/connectors/hive/storage_adapters/s3fs/RegisterS3FileSystem.cpp
+2 −1 velox/core/PlanNode.h
+3 −1 velox/docs/develop/operators.rst
+1 −1 velox/dwio/parquet/RegisterParquetReader.cpp
+1 −1 velox/dwio/parquet/RegisterParquetWriter.cpp
+8 −7 velox/dwio/parquet/tests/reader/ParquetTableScanTest.cpp
+32 −2 velox/dwio/parquet/tests/writer/ParquetWriterTest.cpp
+21 −0 velox/dwio/parquet/writer/Writer.cpp
+2 −0 velox/dwio/parquet/writer/Writer.h
+335 −270 velox/exec/NestedLoopJoinProbe.cpp
+191 −56 velox/exec/NestedLoopJoinProbe.h
+89 −7 velox/exec/tests/NestedLoopJoinTest.cpp
+9 −3 velox/exec/tests/utils/QueryAssertions.cpp
+30 −13 velox/vector/arrow/Bridge.cpp
+1 −0 velox/vector/arrow/Bridge.h
+12 −0 velox/vector/arrow/tests/ArrowBridgeSchemaTest.cpp

0 comments on commit 83a82cd

Please sign in to comment.