Skip to content

Commit

Permalink
Advance Velox version
Browse files Browse the repository at this point in the history
  • Loading branch information
tanjialiang committed Mar 12, 2024
1 parent 4d6b143 commit 6804b44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion presto-native-execution/velox
Submodule velox updated 66 files
+3 −3 scripts/setup-adapters.sh
+13 −14 velox/common/memory/AllocationPool.cpp
+4 −3 velox/common/memory/AllocationPool.h
+6 −2 velox/common/memory/Memory.cpp
+9 −5 velox/common/memory/Memory.h
+3 −1 velox/common/memory/MemoryArbitrator.cpp
+8 −2 velox/common/memory/MemoryArbitrator.h
+4 −4 velox/common/memory/MemoryPool.cpp
+1 −1 velox/common/memory/MemoryPool.h
+35 −32 velox/common/memory/MmapArena.cpp
+16 −15 velox/common/memory/MmapArena.h
+114 −45 velox/common/memory/SharedArbitrator.cpp
+15 −20 velox/common/memory/SharedArbitrator.h
+47 −0 velox/common/memory/tests/AllocationPoolTest.cpp
+3 −1 velox/common/memory/tests/MemoryArbitratorTest.cpp
+3 −1 velox/common/memory/tests/MemoryManagerTest.cpp
+0 −1 velox/common/memory/tests/MemoryPoolTest.cpp
+163 −23 velox/common/memory/tests/MockSharedArbitratorTest.cpp
+10 −8 velox/common/memory/tests/SharedArbitratorTest.cpp
+3 −2 velox/connectors/hive/iceberg/IcebergSplitReader.cpp
+74 −31 velox/connectors/hive/iceberg/tests/IcebergReadTest.cpp
+6 −0 velox/docs/functions/spark/aggregate.rst
+4 −5 velox/docs/functions/spark/math.rst
+16 −3 velox/docs/functions/spark/misc.rst
+1 −1 velox/dwio/common/InputStream.h
+14 −0 velox/dwio/common/Reader.h
+40 −0 velox/dwio/common/ReaderState.h
+1 −1 velox/dwio/dwrf/reader/ColumnReader.cpp
+101 −14 velox/dwio/dwrf/reader/DwrfReader.cpp
+14 −0 velox/dwio/dwrf/reader/DwrfReader.h
+0 −1 velox/dwio/dwrf/reader/ReaderBase.cpp
+14 −14 velox/dwio/parquet/reader/ParquetReader.cpp
+4 −0 velox/exec/HashBuild.cpp
+2 −0 velox/exec/HashBuild.h
+1 −1 velox/exec/RowContainer.cpp
+96 −101 velox/exec/RowContainer.h
+4 −3 velox/exec/Spill.h
+8 −0 velox/exec/Task.cpp
+7 −0 velox/exec/Task.h
+144 −3 velox/exec/tests/GroupedExecutionTest.cpp
+3 −3 velox/exec/tests/HashJoinTest.cpp
+11 −2 velox/exec/tests/TaskTest.cpp
+2 −1 velox/exec/tests/utils/OperatorTestBase.cpp
+10 −4 velox/functions/lib/DateTimeFormatter.cpp
+4 −2 velox/functions/lib/aggregates/CMakeLists.txt
+52 −0 velox/functions/lib/aggregates/CentralMomentsAggregatesBase.cpp
+448 −0 velox/functions/lib/aggregates/CentralMomentsAggregatesBase.h
+11 −0 velox/functions/lib/tests/DateTimeFormatterTest.cpp
+14 −456 velox/functions/prestosql/aggregates/CentralMomentsAggregates.cpp
+1 −4 velox/functions/sparksql/Arithmetic.h
+38 −0 velox/functions/sparksql/MonotonicallyIncreasingId.h
+4 −0 velox/functions/sparksql/Register.cpp
+1 −0 velox/functions/sparksql/aggregates/CMakeLists.txt
+114 −0 velox/functions/sparksql/aggregates/CentralMomentsAggregate.cpp
+11 −10 velox/functions/sparksql/aggregates/CentralMomentsAggregate.h
+2 −0 velox/functions/sparksql/aggregates/Register.cpp
+2 −1 velox/functions/sparksql/aggregates/tests/CMakeLists.txt
+60 −0 velox/functions/sparksql/aggregates/tests/CentralMomentsAggregationTest.cpp
+6 −1 velox/functions/sparksql/fuzzer/SparkAggregationFuzzerTest.cpp
+3 −5 velox/functions/sparksql/tests/ArithmeticTest.cpp
+1 −0 velox/functions/sparksql/tests/CMakeLists.txt
+47 −0 velox/functions/sparksql/tests/MonotonicallyIncreasingIdTest.cpp
+0 −5 velox/functions/sparksql/tests/RandTest.cpp
+5 −0 velox/functions/sparksql/tests/SparkFunctionBaseTest.h
+0 −5 velox/functions/sparksql/tests/SparkPartitionIdTest.cpp
+6 −6 velox/functions/sparksql/tests/StringTest.cpp

0 comments on commit 6804b44

Please sign in to comment.