Skip to content

Commit

Permalink
Automated submodule update: velox (#272)
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@41971b3

Pull Request resolved: #272

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

Reviewed By: wenleix, bearzx

Differential Revision: D35255097

fbshipit-source-id: 9799cbf1dd28e7e597d588e0d3cd7b6d791616a6
  • Loading branch information
facebook-github-bot committed Apr 5, 2022
1 parent 38dbba8 commit 7b229cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion csrc/velox/velox
Submodule velox updated 94 files
+0 −50 build/fbcode_builder/getdeps/builder.py
+0 −11 build/fbcode_builder/getdeps/manifest.py
+0 −28 build/fbcode_builder/manifests/bistro
+1 −0 build/fbcode_builder/manifests/eden
+29 −0 build/fbcode_builder/manifests/edencommon
+1 −4 build/fbcode_builder/specs/fmt.py
+1 −1 build/fbcode_builder/specs/proxygen.py
+32 −16 scripts/benchmark-runner.py
+1 −1 scripts/setup-ubuntu.sh
+21 −1 velox/dwio/common/ScanSpec.cpp
+2 −0 velox/dwio/common/ScanSpec.h
+81 −110 velox/dwio/dwrf/reader/ColumnVisitors.h
+1 −0 velox/dwio/dwrf/reader/DwrfReader.cpp
+11 −1 velox/dwio/dwrf/reader/DwrfReader.h
+7 −0 velox/dwio/dwrf/reader/DwrfReaderShared.h
+21 −0 velox/dwio/dwrf/reader/SelectiveColumnReader.cpp
+83 −3 velox/dwio/dwrf/reader/SelectiveColumnReader.h
+12 −6 velox/dwio/dwrf/reader/SelectiveIntegerDictionaryColumnReader.cpp
+3 −32 velox/dwio/dwrf/reader/SelectiveIntegerDictionaryColumnReader.h
+73 −108 velox/dwio/dwrf/reader/SelectiveStringDictionaryColumnReader.cpp
+5 −32 velox/dwio/dwrf/reader/SelectiveStringDictionaryColumnReader.h
+4 −0 velox/dwio/dwrf/test/E2EFilterTestBase.cpp
+8 −5 velox/exec/Driver.cpp
+45 −7 velox/exec/LocalPartition.cpp
+15 −7 velox/exec/LocalPartition.h
+158 −141 velox/exec/Merge.cpp
+101 −77 velox/exec/Merge.h
+5 −5 velox/exec/MergeJoin.cpp
+36 −16 velox/exec/Task.cpp
+39 −16 velox/exec/Task.h
+193 −77 velox/exec/TreeOfLosers.h
+5 −0 velox/exec/benchmarks/CMakeLists.txt
+63 −0 velox/exec/benchmarks/MergeBenchmark.cpp
+1 −0 velox/exec/tests/AssignUniqueIdTest.cpp
+7 −3 velox/exec/tests/DriverTest.cpp
+133 −0 velox/exec/tests/LocalPartitionTest.cpp
+23 −9 velox/exec/tests/MergeTest.cpp
+1 −1 velox/exec/tests/PartitionedOutputBufferManagerTest.cpp
+1 −16 velox/exec/tests/RowContainerTest.cpp
+13 −78 velox/exec/tests/TreeOfLosersTest.cpp
+2 −2 velox/exec/tests/utils/Cursor.h
+174 −0 velox/exec/tests/utils/MergeTestBase.h
+0 −13 velox/exec/tests/utils/OperatorTestBase.cpp
+8 −5 velox/exec/tests/utils/OperatorTestBase.h
+144 −2 velox/expression/ComplexViewTypes.h
+15 −22 velox/expression/ComplexWriterTypes.h
+71 −0 velox/expression/tests/ArrayViewTest.cpp
+71 −6 velox/expression/tests/ArrayWriterTest.cpp
+1 −11 velox/expression/tests/CastExprTest.cpp
+2 −6 velox/expression/tests/EvalSimplifiedTest.cpp
+1 −15 velox/expression/tests/ExprTest.cpp
+42 −0 velox/expression/tests/MapViewTest.cpp
+2 −0 velox/expression/tests/MapWriterTest.cpp
+32 −0 velox/expression/tests/RowViewTest.cpp
+3 −0 velox/expression/tests/RowWriterTest.cpp
+3 −0 velox/expression/tests/SimpleFunctionCallNullFreeTest.cpp
+3 −0 velox/expression/tests/SimpleFunctionPresetNullsTest.cpp
+1 −0 velox/expression/tests/SimpleFunctionTest.cpp
+3 −0 velox/expression/tests/TryExprTest.cpp
+3 −0 velox/functions/lib/tests/Re2FunctionsTest.cpp
+1 −0 velox/functions/prestosql/aggregates/tests/ValueListTest.cpp
+1 −0 velox/functions/prestosql/tests/ArrayContainsTest.cpp
+1 −0 velox/functions/prestosql/tests/ArrayDistinctTest.cpp
+1 −0 velox/functions/prestosql/tests/ArrayDuplicatesTest.cpp
+1 −0 velox/functions/prestosql/tests/ArrayExceptTest.cpp
+1 −0 velox/functions/prestosql/tests/ArrayIntersectTest.cpp
+1 −0 velox/functions/prestosql/tests/ArrayJoinTest.cpp
+1 −0 velox/functions/prestosql/tests/ArrayMaxTest.cpp
+1 −0 velox/functions/prestosql/tests/ArrayMinTest.cpp
+1 −0 velox/functions/prestosql/tests/ArrayPositionTest.cpp
+1 −0 velox/functions/prestosql/tests/ArraysOverlapTest.cpp
+3 −1 velox/functions/prestosql/tests/CastBaseTest.h
+1 −0 velox/functions/prestosql/tests/CoalesceTest.cpp
+1 −0 velox/functions/prestosql/tests/DateTimeFunctionsTest.cpp
+0 −15 velox/functions/prestosql/tests/FunctionBaseTest.h
+1 −0 velox/functions/prestosql/tests/InPredicateTest.cpp
+1 −0 velox/functions/prestosql/tests/MapTest.cpp
+1 −0 velox/functions/prestosql/tests/NotTest.cpp
+1 −0 velox/functions/prestosql/tests/ReverseTest.cpp
+1 −0 velox/functions/prestosql/tests/SliceTest.cpp
+1 −0 velox/functions/prestosql/tests/WidthBucketArrayTest.cpp
+1 −0 velox/functions/prestosql/tests/ZipTest.cpp
+2 −0 velox/functions/sparksql/tests/ArraySortTest.cpp
+2 −0 velox/functions/sparksql/tests/SortArrayTest.cpp
+2 −0 velox/functions/sparksql/tests/SplitFunctionsTest.cpp
+3 −12 velox/row/tests/UnsafeRowBatchDeserializerTest.cpp
+6 −16 velox/row/tests/UnsafeRowDeserializerTest.cpp
+3 −11 velox/row/tests/UnsafeRowFuzzTests.cpp
+2 −10 velox/serializers/tests/PrestoSerializerTest.cpp
+1 −1 velox/vector/FlatVector.h
+1 −0 velox/vector/tests/CMakeLists.txt
+102 −0 velox/vector/tests/LazyVectorTest.cpp
+13 −0 velox/vector/tests/VectorTestBase.cpp
+8 −0 velox/vector/tests/VectorTestBase.h

0 comments on commit 7b229cf

Please sign in to comment.