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 23, 2024
1 parent 797019c commit b2974a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion presto-native-execution/velox
Submodule velox updated 49 files
+1 −0 CMake/resolve_dependency_modules/arrow/CMakeLists.txt
+91 −89 velox/common/base/SpillStats.cpp
+15 −15 velox/common/base/SpillStats.h
+38 −38 velox/common/base/tests/SpillStatsTest.cpp
+17 −9 velox/common/memory/MemoryArbitrator.h
+20 −19 velox/common/memory/SharedArbitrator.cpp
+0 −24 velox/common/memory/tests/MemoryArbitratorTest.cpp
+24 −131 velox/common/memory/tests/MockSharedArbitratorTest.cpp
+18 −0 velox/common/time/Timer.h
+6 −6 velox/connectors/hive/tests/HiveDataSinkTest.cpp
+25 −0 velox/dwio/common/SelectiveColumnReader.cpp
+5 −8 velox/dwio/common/SelectiveColumnReader.h
+0 −52 velox/dwio/common/SelectiveColumnReaderInternal.h
+2 −5 velox/dwio/common/SelectiveRepeatedColumnReader.cpp
+1 −9 velox/dwio/common/SelectiveStructColumnReader.cpp
+1 −2 velox/dwio/common/SelectiveStructColumnReader.h
+27 −1 velox/dwio/parquet/reader/ParquetReader.cpp
+ velox/dwio/parquet/tests/examples/array_of_map_of_int_key_array_value.parquet
+ velox/dwio/parquet/tests/examples/array_of_map_of_int_key_struct_value.parquet
+ velox/dwio/parquet/tests/examples/struct_of_array_of_array.parquet
+149 −0 velox/dwio/parquet/tests/reader/ParquetReaderTest.cpp
+1 −1 velox/exec/HashProbe.cpp
+16 −35 velox/exec/Operator.cpp
+25 −22 velox/exec/SpillFile.cpp
+15 −15 velox/exec/Spiller.cpp
+45 −14 velox/exec/Task.cpp
+6 −1 velox/exec/Task.h
+5 −0 velox/exec/TaskStructs.h
+9 −0 velox/exec/tests/CMakeLists.txt
+386 −0 velox/exec/tests/OperatorReplacement.cpp
+27 −29 velox/exec/tests/SpillTest.cpp
+51 −49 velox/exec/tests/SpillerTest.cpp
+25 −0 velox/exec/tests/TableScanTest.cpp
+12 −0 velox/expression/CastExpr-inl.h
+6 −0 velox/expression/tests/CastExprTest.cpp
+1 −1 velox/functions/lib/MapConcat.cpp
+45 −44 velox/functions/lib/SubscriptUtil.cpp
+68 −21 velox/functions/lib/SubscriptUtil.h
+11 −0 velox/functions/lib/tests/MapConcatTest.cpp
+98 −27 velox/functions/prestosql/ArrayIntersectExcept.cpp
+20 −1 velox/functions/prestosql/benchmarks/MapSubscriptCachingBenchmark.cpp
+64 −0 velox/functions/prestosql/tests/ArrayExceptTest.cpp
+59 −0 velox/functions/prestosql/tests/ArrayIntersectTest.cpp
+65 −0 velox/functions/prestosql/tests/ArraysOverlapTest.cpp
+15 −6 velox/functions/prestosql/tests/CastBaseTest.h
+152 −5 velox/functions/prestosql/tests/ElementAtTest.cpp
+6 −0 velox/type/Conversions.h
+64 −0 velox/type/Type.h
+4 −3 velox/vector/fuzzer/VectorFuzzer.cpp

0 comments on commit b2974a7

Please sign in to comment.