Skip to content

Commit

Permalink
Automated submodule update: velox (#283)
Browse files Browse the repository at this point in the history
Summary:
This is an automated pull request to update the first-party submodule for [facebookincubator/velox](https://github.com/facebookincubator/velox).

New submodule commit: facebookincubator/velox@4a36551

Pull Request resolved: #283

Test Plan: Ensure that CI jobs succeed on GitHub before landing.

Reviewed By: wenleix

Differential Revision: D35399386

fbshipit-source-id: 2457b16f21b80631f6c86a303859ba3c321fdbad
  • Loading branch information
facebook-github-bot committed Apr 8, 2022
1 parent c6610b1 commit ebf665a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion csrc/velox/velox
Submodule velox updated 84 files
+1 −1 build/deps/github_hashes/facebook/folly-rev.txt
+28 −0 build/fbcode_builder/getdeps/builder.py
+2 −0 build/fbcode_builder/getdeps/manifest.py
+1 −0 build/fbcode_builder/manifests/airstore
+5 −0 build/fbcode_builder/manifests/folly
+22 −0 build/fbcode_builder/manifests/xz
+1 −1 third_party/googletest
+4 −0 velox/benchmarks/basic/CMakeLists.txt
+120 −0 velox/benchmarks/basic/VectorCompare.cpp
+14 −2 velox/benchmarks/tpch/TpchBenchmark.cpp
+2 −2 velox/common/base/CMakeLists.txt
+39 −0 velox/common/base/RandomUtil.cpp
+30 −0 velox/common/base/RandomUtil.h
+11 −0 velox/common/file/FileSystems.cpp
+5 −0 velox/common/file/FileSystems.h
+1 −0 velox/common/file/FileTest.cpp
+0 −2 velox/connectors/hive/HiveConnector.cpp
+4 −0 velox/connectors/hive/storage_adapters/s3fs/S3FileSystem.h
+6 −0 velox/core/Metaprogramming.h
+9 −1 velox/core/PlanNode.cpp
+16 −1 velox/core/PlanNode.h
+4 −5 velox/docs/develop/joins.rst
+140 −1 velox/docs/monthly-updates/march-2022.rst
+8 −4 velox/exec/CrossJoinBuild.cpp
+25 −39 velox/exec/Driver.cpp
+18 −12 velox/exec/Driver.h
+19 −11 velox/exec/HashBuild.cpp
+6 −27 velox/exec/HashProbe.cpp
+9 −49 velox/exec/HashProbe.h
+12 −8 velox/exec/JoinBridge.cpp
+1 −1 velox/exec/JoinBridge.h
+7 −5 velox/exec/LocalPartition.h
+11 −16 velox/exec/LocalPlanner.cpp
+3 −1 velox/exec/Operator.cpp
+3 −1 velox/exec/Operator.h
+7 −4 velox/exec/OperatorUtils.cpp
+8 −4 velox/exec/OperatorUtils.h
+1 −2 velox/exec/PartitionedOutput.h
+7 −14 velox/exec/PartitionedOutputBufferManager.cpp
+3 −6 velox/exec/PartitionedOutputBufferManager.h
+25 −7 velox/exec/PlanNodeStats.cpp
+10 −0 velox/exec/PlanNodeStats.h
+37 −48 velox/exec/Task.cpp
+96 −0 velox/exec/TaskDriverOperatorLifecycle.md
+1 −1 velox/exec/TaskStructs.h
+127 −86 velox/exec/Unnest.cpp
+2 −2 velox/exec/Unnest.h
+30 −21 velox/exec/tests/HashJoinTest.cpp
+1 −1 velox/exec/tests/MultiFragmentTest.cpp
+13 −7 velox/exec/tests/PlanNodeToStringTest.cpp
+3 −2 velox/exec/tests/TableScanTest.cpp
+24 −40 velox/exec/tests/TopNTest.cpp
+211 −13 velox/exec/tests/UnnestTest.cpp
+63 −56 velox/exec/tests/utils/PlanBuilder.cpp
+19 −7 velox/exec/tests/utils/PlanBuilder.h
+19 −9 velox/exec/tests/utils/QueryAssertions.cpp
+12 −0 velox/exec/tests/utils/QueryAssertions.h
+1 −0 velox/experimental/codegen/compiler_utils/CompilerOptions.h
+4 −52 velox/expression/ComplexViewTypes.h
+4 −4 velox/expression/SimpleFunctionAdapter.h
+3 −3 velox/expression/tests/ArrayViewTest.cpp
+1 −0 velox/expression/tests/CMakeLists.txt
+1 −3 velox/expression/tests/SimpleFunctionCallNullFreeTest.cpp
+195 −0 velox/expression/tests/SimpleFunctionInitTest.cpp
+222 −26 velox/functions/lib/KllSketch-inl.h
+0 −1 velox/functions/lib/KllSketch.cpp
+76 −5 velox/functions/lib/KllSketch.h
+81 −4 velox/functions/lib/tests/KllSketchTest.cpp
+191 −226 velox/functions/prestosql/aggregates/ApproxPercentileAggregate.cpp
+7 −4 velox/functions/prestosql/aggregates/ArrayAggAggregate.cpp
+5 −5 velox/functions/prestosql/aggregates/ChecksumAggregate.cpp
+6 −7 velox/functions/prestosql/aggregates/CountAggregate.cpp
+4 −0 velox/functions/prestosql/aggregates/IOUtils.h
+8 −4 velox/functions/prestosql/aggregates/MapAggAggregate.cpp
+90 −103 velox/functions/prestosql/aggregates/tests/ApproxPercentileTest.cpp
+16 −0 velox/functions/prestosql/aggregates/tests/ArrayAggTest.cpp
+40 −11 velox/functions/prestosql/aggregates/tests/ChecksumAggregateTest.cpp
+20 −0 velox/functions/prestosql/aggregates/tests/CountAggregationTest.cpp
+17 −0 velox/functions/prestosql/aggregates/tests/MapAggTest.cpp
+3 −4 velox/type/Tree.h
+57 −0 velox/type/Type.h
+2 −0 velox/vector/BaseVector.h
+1 −1 velox/vector/CMakeLists.txt
+16 −1 velox/vector/FlatVector.cpp

0 comments on commit ebf665a

Please sign in to comment.