Skip to content

Commit

Permalink
[native]Advance velox version
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoxmeng authored and aditi-pandit committed Nov 18, 2023
1 parent 1f62a73 commit 86108d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion presto-native-execution/velox
Submodule velox updated 83 files
+1 −1 build/deps/github_hashes/facebook/folly-rev.txt
+3 −3 pyvelox/pyvelox.h
+1 −1 velox/benchmarks/basic/VectorCompare.cpp
+27 −11 velox/common/base/CompareFlags.h
+80 −39 velox/common/caching/AsyncDataCache.cpp
+16 −9 velox/common/caching/AsyncDataCache.h
+6 −0 velox/common/caching/SsdCache.cpp
+221 −7 velox/common/caching/tests/AsyncDataCacheTest.cpp
+7 −2 velox/common/memory/Allocation.cpp
+3 −2 velox/common/memory/Allocation.h
+3 −4 velox/common/memory/HashStringAllocator.cpp
+39 −12 velox/common/memory/MallocAllocator.cpp
+6 −0 velox/common/memory/MallocAllocator.h
+20 −11 velox/common/memory/MemoryAllocator.cpp
+15 −0 velox/common/memory/MemoryAllocator.h
+83 −43 velox/common/memory/MmapAllocator.cpp
+3 −1 velox/common/memory/MmapAllocator.h
+22 −0 velox/common/memory/tests/AllocationTest.cpp
+10 −0 velox/common/memory/tests/HashStringAllocatorTest.cpp
+88 −9 velox/common/memory/tests/MemoryAllocatorTest.cpp
+17 −6 velox/common/memory/tests/MemoryPoolTest.cpp
+1 −1 velox/connectors/hive/HiveDataSink.cpp
+3 −0 velox/docs/functions/presto/bitwise.rst
+8 −16 velox/dwio/parquet/reader/ParquetReader.cpp
+2 −2 velox/exec/AddressableNonNullValueList.cpp
+2 −2 velox/exec/ContainerRowSerde.cpp
+9 −10 velox/exec/ContainerRowSerde.h
+1 −2 velox/exec/Merge.cpp
+1 −1 velox/exec/OrderBy.cpp
+2 −2 velox/exec/RowContainer.cpp
+2 −2 velox/exec/SortWindowBuild.cpp
+12 −1 velox/exec/StreamingAggregation.cpp
+7 −0 velox/exec/tests/AggregationFuzzerTest.cpp
+18 −21 velox/exec/tests/ContainerRowSerdeTest.cpp
+5 −5 velox/exec/tests/FunctionSignatureBuilderTest.cpp
+209 −56 velox/exec/tests/JoinFuzzer.cpp
+17 −0 velox/exec/tests/QueryAssertionsTest.cpp
+9 −9 velox/exec/tests/SortBufferTest.cpp
+43 −1 velox/exec/tests/StreamingAggregationTest.cpp
+195 −53 velox/exec/tests/utils/AggregationFuzzer.cpp
+34 −1 velox/exec/tests/utils/DuckQueryRunner.cpp
+5 −0 velox/exec/tests/utils/DuckQueryRunner.h
+43 −45 velox/exec/tests/utils/QueryAssertions.cpp
+5 −5 velox/exec/tests/utils/QueryAssertions.h
+2 −0 velox/expression/CMakeLists.txt
+37 −7 velox/expression/FunctionSignature.cpp
+31 −5 velox/expression/FunctionSignature.h
+21 −0 velox/expression/SignatureBinder.cpp
+1 −1 velox/expression/tests/ArgumentTypeFuzzerTest.cpp
+1 −5 velox/expression/tests/CMakeLists.txt
+1 −1 velox/expression/tests/ExpressionFuzzer.cpp
+1 −1 velox/expression/tests/ExpressionFuzzer.h
+8 −2 velox/expression/tests/ExpressionVerifier.cpp
+1 −1 velox/expression/tests/ExpressionVerifier.h
+1 −1 velox/expression/tests/GenericViewTest.cpp
+84 −2 velox/expression/tests/SignatureBinderTest.cpp
+1 −1 velox/expression/tests/utils/ArgumentTypeFuzzer.cpp
+0 −0 velox/expression/tests/utils/ArgumentTypeFuzzer.h
+19 −0 velox/expression/tests/utils/CMakeLists.txt
+1 −1 velox/expression/tests/utils/FuzzerToolkit.cpp
+0 −0 velox/expression/tests/utils/FuzzerToolkit.h
+64 −38 velox/functions/lib/Re2Functions.cpp
+13 −1 velox/functions/lib/Re2Functions.h
+2 −1 velox/functions/lib/aggregates/SingleValueAccumulator.h
+5 −13 velox/functions/lib/aggregates/SumAggregateBase.h
+102 −18 velox/functions/lib/tests/Re2FunctionsTest.cpp
+1 −1 velox/functions/prestosql/ArrayContains.cpp
+2 −2 velox/functions/prestosql/ArrayFunctions.h
+1 −1 velox/functions/prestosql/ArraySort.cpp
+3 −3 velox/functions/prestosql/Bitwise.h
+3 −5 velox/functions/prestosql/Comparisons.h
+1 −1 velox/functions/prestosql/aggregates/Compare.cpp
+1 −1 velox/functions/prestosql/aggregates/EntropyAggregates.cpp
+13 −0 velox/functions/prestosql/aggregates/tests/EntropyAggregationTest.cpp
+30 −31 velox/functions/prestosql/tests/BitwiseTest.cpp
+1 −1 velox/functions/sparksql/aggregates/MinMaxByAggregate.cpp
+8 −16 velox/functions/sparksql/aggregates/tests/BloomFilterAggAggregateTest.cpp
+44 −4 velox/type/DecimalUtil.h
+54 −0 velox/type/tests/DecimalTest.cpp
+1 −5 velox/vector/BaseVector.cpp
+8 −10 velox/vector/BaseVector.h
+2 −2 velox/vector/tests/VectorCompareTest.cpp
+12 −12 velox/vector/tests/VectorTest.cpp

0 comments on commit 86108d8

Please sign in to comment.