Skip to content

Commit

Permalink
Automated submodule update: velox
Browse files Browse the repository at this point in the history
  • Loading branch information
facebook-github-bot committed May 11, 2022
1 parent 9650764 commit 8778dd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion csrc/velox/velox
Submodule velox updated 52 files
+3 −0 CMakeLists.txt
+1 −1 build/deps/github_hashes/facebook/folly-rev.txt
+1 −1 build/fbcode_builder/CMake/FBThriftCppLibrary.cmake
+1 −1 build/fbcode_builder/CMake/FBThriftPyLibrary.cmake
+4 −1 velox/CMakeLists.txt
+36 −0 velox/common/base/BitUtil.h
+353 −37 velox/common/base/SimdUtil-inl.h
+79 −16 velox/common/base/SimdUtil.h
+92 −54 velox/common/base/tests/SimdUtilTest.cpp
+1 −1 velox/common/memory/MmapAllocator.cpp
+8 −0 velox/common/process/ProcessBase.cpp
+4 −0 velox/connectors/CMakeLists.txt
+21 −0 velox/connectors/tpch/CMakeLists.txt
+154 −0 velox/connectors/tpch/TpchConnector.cpp
+166 −0 velox/connectors/tpch/TpchConnector.h
+29 −0 velox/connectors/tpch/TpchConnectorSplit.h
+25 −0 velox/connectors/tpch/tests/CMakeLists.txt
+203 −0 velox/connectors/tpch/tests/TpchConnectorTest.cpp
+1 −1 velox/core/QueryConfig.h
+6 −0 velox/docs/functions/aggregate.rst
+21 −3 velox/dwio/dwrf/common/DecoderUtil.cpp
+351 −248 velox/dwio/dwrf/common/IntDecoder.cpp
+7 −0 velox/dwio/dwrf/reader/ColumnLoader.cpp
+32 −14 velox/dwio/dwrf/reader/ColumnVisitors.h
+13 −5 velox/dwio/dwrf/reader/SelectiveColumnReader.cpp
+2 −1 velox/dwio/dwrf/reader/SelectiveStructColumnReader.cpp
+11 −0 velox/dwio/dwrf/reader/SelectiveStructColumnReader.h
+2 −0 velox/exec/Driver.cpp
+2 −0 velox/exec/Operator.cpp
+19 −8 velox/exec/Operator.h
+4 −2 velox/exec/PlanNodeStats.cpp
+6 −0 velox/exec/PlanNodeStats.h
+10 −0 velox/exec/TableScan.cpp
+3 −0 velox/exec/TableScan.h
+1 −0 velox/exec/tests/utils/CMakeLists.txt
+2 −1 velox/functions/prestosql/aggregates/AggregateNames.h
+1 −0 velox/functions/prestosql/aggregates/CMakeLists.txt
+279 −0 velox/functions/prestosql/aggregates/HistogramAggregate.cpp
+55 −7 velox/functions/prestosql/aggregates/tests/AggregationTestBase.cpp
+22 −1 velox/functions/prestosql/aggregates/tests/AggregationTestBase.h
+1 −0 velox/functions/prestosql/aggregates/tests/CMakeLists.txt
+217 −0 velox/functions/prestosql/aggregates/tests/HistogramTest.cpp
+1 −0 velox/functions/sparksql/CMakeLists.txt
+4 −0 velox/functions/sparksql/Register.cpp
+61 −0 velox/functions/sparksql/Size.cpp
+25 −0 velox/functions/sparksql/Size.h
+1 −0 velox/functions/sparksql/tests/CMakeLists.txt
+91 −0 velox/functions/sparksql/tests/SizeTest.cpp
+1 −1 velox/tpch/gen/TpchGen.cpp
+1 −1 velox/tpch/gen/TpchGen.h
+1 −1 velox/type/Filter.cpp
+53 −48 velox/type/tests/FilterTest.cpp

0 comments on commit 8778dd5

Please sign in to comment.