Skip to content

Commit

Permalink
[native] Update velox
Browse files Browse the repository at this point in the history
  • Loading branch information
czentgr authored and majetideepak committed Oct 9, 2024
1 parent 7deadd1 commit 48f0a0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion presto-native-execution/velox
Submodule velox updated 79 files
+42 −0 .github/CODEOWNERS
+5 −5 CMake/resolve_dependency_modules/README.md
+2 −2 CMake/resolve_dependency_modules/folly/CMakeLists.txt
+3 −2 scripts/setup-centos9.sh
+3 −3 scripts/setup-macos.sh
+3 −2 scripts/setup-ubuntu.sh
+2 −2 velox/common/caching/AsyncDataCache.cpp
+14 −0 velox/common/memory/ByteStream.cpp
+2 −0 velox/common/memory/ByteStream.h
+38 −0 velox/common/memory/tests/ByteStreamTest.cpp
+6 −1 velox/connectors/Connector.h
+1 −0 velox/connectors/hive/CMakeLists.txt
+7 −0 velox/connectors/hive/HiveConfig.cpp
+8 −0 velox/connectors/hive/HiveConfig.h
+166 −0 velox/connectors/hive/HiveConnectorSplit.cpp
+8 −15 velox/connectors/hive/HiveConnectorSplit.h
+7 −1 velox/connectors/hive/HiveConnectorUtil.cpp
+3 −1 velox/connectors/hive/HiveDataSink.cpp
+76 −0 velox/connectors/hive/tests/HiveConnectorSerDeTest.cpp
+19 −6 velox/connectors/hive/tests/HiveConnectorUtilTest.cpp
+5 −0 velox/docs/monitoring/stats.rst
+61 −7 velox/dwio/parquet/reader/ParquetReader.cpp
+237 −0 velox/dwio/parquet/tests/reader/ParquetTableScanTest.cpp
+5 −5 velox/exec/GroupingSet.cpp
+3 −2 velox/exec/GroupingSet.h
+3 −2 velox/exec/HashAggregation.cpp
+16 −17 velox/exec/HashBuild.cpp
+29 −28 velox/exec/HashProbe.cpp
+2 −1 velox/exec/HashTable.cpp
+4 −0 velox/exec/HashTable.h
+5 −0 velox/exec/Operator.h
+6 −2 velox/exec/RowNumber.cpp
+19 −4 velox/exec/SortBuffer.cpp
+4 −0 velox/exec/SortBuffer.h
+3 −2 velox/exec/Task.cpp
+7 −3 velox/exec/Task.h
+5 −0 velox/exec/Window.cpp
+26 −5 velox/exec/fuzzer/AggregationFuzzerBase.cpp
+4 −2 velox/exec/fuzzer/AggregationFuzzerBase.h
+3 −5 velox/exec/fuzzer/MemoryArbitrationFuzzer.cpp
+2 −51 velox/exec/fuzzer/PrestoQueryRunner.cpp
+10 −0 velox/exec/fuzzer/PrestoQueryRunner.h
+352 −93 velox/exec/fuzzer/WindowFuzzer.cpp
+94 −6 velox/exec/fuzzer/WindowFuzzer.h
+15 −12 velox/exec/tests/AggregationTest.cpp
+39 −2 velox/exec/tests/HashTableTest.cpp
+20 −3 velox/exec/tests/PrestoQueryRunnerTest.cpp
+1 −0 velox/exec/tests/QueryTraceTest.cpp
+2 −0 velox/exec/tests/RowNumberTest.cpp
+137 −34 velox/exec/tests/SortBufferTest.cpp
+44 −0 velox/exec/tests/WindowTest.cpp
+33 −17 velox/functions/prestosql/ArrayDistinct.cpp
+0 −5 velox/functions/prestosql/MapTopN.h
+4 −3 velox/functions/prestosql/MultimapFromEntries.h
+13 −39 velox/functions/prestosql/fuzzer/ApproxPercentileResultVerifier.h
+0 −1 velox/functions/prestosql/registration/ArrayFunctionsRegistration.cpp
+67 −0 velox/functions/prestosql/tests/ArrayDistinctTest.cpp
+61 −0 velox/functions/prestosql/tests/ArrayMaxTest.cpp
+61 −0 velox/functions/prestosql/tests/ArrayMinTest.cpp
+146 −0 velox/functions/prestosql/tests/ArraySortTest.cpp
+16 −0 velox/functions/prestosql/tests/MapTopNTest.cpp
+24 −0 velox/functions/prestosql/tests/MultimapFromEntriesTest.cpp
+5 −4 velox/serializers/PrestoSerializer.cpp
+9 −0 velox/serializers/tests/PrestoSerializerTest.cpp
+44 −0 velox/tool/trace/AggregationReplayer.cpp
+45 −0 velox/tool/trace/AggregationReplayer.h
+1 −1 velox/tool/trace/CMakeLists.txt
+32 −1 velox/tool/trace/OperatorReplayerBase.cpp
+11 −4 velox/tool/trace/OperatorReplayerBase.h
+13 −5 velox/tool/trace/QueryReplayer.cpp
+11 −50 velox/tool/trace/TableWriterReplayer.cpp
+4 −16 velox/tool/trace/TableWriterReplayer.h
+207 −0 velox/tool/trace/tests/AggregationReplayerTest.cpp
+2 −1 velox/tool/trace/tests/CMakeLists.txt
+46 −12 velox/type/Type.cpp
+28 −11 velox/type/Type.h
+5 −0 velox/vector/VectorTypeUtils.h
+6 −0 velox/vector/fuzzer/VectorFuzzer.h
+3 −1 velox/vector/tests/VectorMakerTest.cpp

0 comments on commit 48f0a0c

Please sign in to comment.