Skip to content

Commit

Permalink
[native] Advance velox.
Browse files Browse the repository at this point in the history
  • Loading branch information
amitkdutta committed May 16, 2024
1 parent 5240412 commit f1f17de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion presto-native-execution/velox
Submodule velox updated 81 files
+1 −1 .github/workflows/scheduled.yml
+0 −1 CMakeLists.txt
+13 −0 velox/common/base/Counters.cpp
+9 −0 velox/common/base/Counters.h
+2 −0 velox/common/base/PeriodicStatsReporter.cpp
+4 −1 velox/common/base/tests/StatsReporterTest.cpp
+6 −0 velox/common/caching/SsdCache.cpp
+3 −0 velox/common/caching/SsdCache.h
+9 −2 velox/common/caching/SsdFile.cpp
+22 −15 velox/common/caching/SsdFile.h
+49 −35 velox/common/caching/tests/AsyncDataCacheTest.cpp
+80 −12 velox/common/caching/tests/SsdFileTest.cpp
+2 −3 velox/docs/develop/aggregate-functions.rst
+13 −2 velox/docs/functions/spark/array.rst
+8 −0 velox/docs/functions/spark/math.rst
+13 −0 velox/docs/monitoring/metrics.rst
+7 −9 velox/dwio/common/SelectiveColumnReader.cpp
+8 −1 velox/dwio/common/SelectiveColumnReader.h
+5 −12 velox/dwio/common/SelectiveRepeatedColumnReader.cpp
+0 −6 velox/dwio/common/SelectiveRepeatedColumnReader.h
+266 −0 velox/dwio/common/SelectiveStructColumnReader.h
+19 −231 velox/dwio/dwrf/reader/SelectiveFlatMapColumnReader.cpp
+2 −2 velox/dwio/parquet/reader/ParquetReader.cpp
+6 −4 velox/exec/Driver.cpp
+6 −2 velox/exec/Driver.h
+12 −1 velox/exec/GroupingSet.cpp
+29 −0 velox/exec/tests/AggregationTest.cpp
+0 −2 velox/exec/tests/SimpleAggregateAdapterTest.cpp
+50 −0 velox/expression/fuzzer/tests/ArgGeneratorTestUtils.cpp
+36 −0 velox/expression/fuzzer/tests/ArgGeneratorTestUtils.h
+9 −1 velox/expression/fuzzer/tests/CMakeLists.txt
+1 −33 velox/expression/fuzzer/tests/DecimalArgGeneratorTest.cpp
+0 −1 velox/functions/lib/aggregates/tests/SumTestBase.h
+60 −8 velox/functions/lib/aggregates/tests/utils/AggregationTestBase.cpp
+0 −13 velox/functions/lib/aggregates/tests/utils/AggregationTestBase.h
+0 −1 velox/functions/prestosql/aggregates/tests/ApproxMostFrequentTest.cpp
+0 −1 velox/functions/prestosql/aggregates/tests/ApproxPercentileTest.cpp
+0 −1 velox/functions/prestosql/aggregates/tests/AverageAggregationTest.cpp
+0 −1 velox/functions/prestosql/aggregates/tests/BitwiseAggregationTest.cpp
+0 −1 velox/functions/prestosql/aggregates/tests/BoolAndOrTest.cpp
+0 −1 velox/functions/prestosql/aggregates/tests/CentralMomentsAggregationTest.cpp
+0 −1 velox/functions/prestosql/aggregates/tests/ChecksumAggregateTest.cpp
+0 −1 velox/functions/prestosql/aggregates/tests/CountAggregationTest.cpp
+0 −1 velox/functions/prestosql/aggregates/tests/CountDistinctTest.cpp
+0 −1 velox/functions/prestosql/aggregates/tests/CountIfAggregationTest.cpp
+0 −1 velox/functions/prestosql/aggregates/tests/CovarianceAggregationTest.cpp
+0 −1 velox/functions/prestosql/aggregates/tests/EntropyAggregationTest.cpp
+0 −1 velox/functions/prestosql/aggregates/tests/GeometricMeanTest.cpp
+0 −1 velox/functions/prestosql/aggregates/tests/HistogramTest.cpp
+0 −2 velox/functions/prestosql/aggregates/tests/MapAggTest.cpp
+0 −1 velox/functions/prestosql/aggregates/tests/MaxSizeForStatsTest.cpp
+0 −6 velox/functions/prestosql/aggregates/tests/MinMaxByAggregationTest.cpp
+0 −2 velox/functions/prestosql/aggregates/tests/MinMaxTest.cpp
+0 −1 velox/functions/prestosql/aggregates/tests/MultiMapAggTest.cpp
+0 −1 velox/functions/prestosql/aggregates/tests/ReduceAggTest.cpp
+0 −1 velox/functions/prestosql/aggregates/tests/SetAggTest.cpp
+0 −1 velox/functions/prestosql/aggregates/tests/SetUnionTest.cpp
+0 −1 velox/functions/prestosql/aggregates/tests/SumDataSizeForStatsTest.cpp
+1 −3 velox/functions/prestosql/aggregates/tests/VarianceAggregationTest.cpp
+42 −0 velox/functions/prestosql/fuzzer/DivideArgGenerator.h
+75 −0 velox/functions/prestosql/fuzzer/FloorAndRoundArgGenerator.h
+42 −0 velox/functions/prestosql/fuzzer/MultiplyArgGenerator.h
+38 −0 velox/functions/prestosql/fuzzer/PlusMinusArgGenerator.h
+124 −0 velox/functions/prestosql/tests/ArgGeneratorTest.cpp
+3 −0 velox/functions/prestosql/tests/CMakeLists.txt
+21 −0 velox/functions/prestosql/tests/utils/FunctionBaseTest.cpp
+8 −0 velox/functions/prestosql/tests/utils/FunctionBaseTest.h
+9 −0 velox/functions/sparksql/Arithmetic.h
+54 −0 velox/functions/sparksql/ArrayGetFunction.cpp
+1 −0 velox/functions/sparksql/CMakeLists.txt
+2 −0 velox/functions/sparksql/Register.cpp
+1 −0 velox/functions/sparksql/RegisterArithmetic.cpp
+0 −1 velox/functions/sparksql/aggregates/tests/AverageAggregationTest.cpp
+0 −1 velox/functions/sparksql/aggregates/tests/BitwiseXorAggregationTest.cpp
+0 −1 velox/functions/sparksql/aggregates/tests/BloomFilterAggAggregateTest.cpp
+0 −1 velox/functions/sparksql/aggregates/tests/MinMaxByAggregationTest.cpp
+24 −0 velox/functions/sparksql/tests/ArithmeticTest.cpp
+49 −0 velox/functions/sparksql/tests/ArrayGetTest.cpp
+1 −0 velox/functions/sparksql/tests/CMakeLists.txt
+1 −0 velox/vector/LazyVector.h
+16 −0 velox/vector/tests/LazyVectorTest.cpp

0 comments on commit f1f17de

Please sign in to comment.