Skip to content

Commit

Permalink
Automated submodule update: velox (#299)
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@b32878f

Pull Request resolved: #299

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

Reviewed By: wenleix

Differential Revision: D35910882

fbshipit-source-id: 92b9eda667f6a940965abdd0c90ba458606db14b
  • Loading branch information
facebook-github-bot committed Apr 27, 2022
1 parent 27e81a7 commit 8bb71dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion csrc/velox/velox
Submodule velox updated 96 files
+1 −1 build/deps/github_hashes/facebook/folly-rev.txt
+0 −1 build/fbcode_builder/manifests/fbthrift
+7 −0 velox/benchmarks/tpch/TpchBenchmark.cpp
+11 −10 velox/common/file/File.h
+1 −1 velox/common/memory/AllocationPool.h
+5 −2 velox/connectors/hive/HiveConnector.cpp
+6 −1 velox/core/PlanNode.h
+90 −86 velox/docs/develop/debugging/print-plan-with-stats.rst
+6 −0 velox/docs/develop/expression-evaluation.rst
+12 −4 velox/duckdb/conversion/DuckParser.cpp
+9 −0 velox/duckdb/conversion/tests/DuckParserTest.cpp
+40 −0 velox/dwio/common/FlushPolicy.h
+8 −2 velox/dwio/dwrf/common/DecoderUtil.h
+6 −0 velox/dwio/dwrf/reader/ColumnLoader.cpp
+5 −0 velox/dwio/dwrf/reader/SelectiveColumnReaderInternal.h
+6 −1 velox/dwio/dwrf/reader/SelectiveStructColumnReader.cpp
+10 −0 velox/dwio/dwrf/reader/SelectiveStructColumnReader.h
+5 −2 velox/dwio/dwrf/test/ColumnWriterStatsTests.cpp
+4 −2 velox/dwio/dwrf/test/ColumnWriterTests.cpp
+21 −5 velox/dwio/dwrf/test/E2EFilterTest.cpp
+42 −20 velox/dwio/dwrf/test/E2EFilterTestBase.cpp
+2 −0 velox/dwio/dwrf/test/E2EFilterTestBase.h
+9 −9 velox/dwio/dwrf/test/E2EWriterTests.cpp
+215 −94 velox/dwio/dwrf/test/FlushPolicyTest.cpp
+3 −2 velox/dwio/dwrf/test/TestWriterFlush.cpp
+35 −9 velox/dwio/dwrf/test/WriterExtendedTests.cpp
+5 −4 velox/dwio/dwrf/test/utils/E2EWriterTestUtil.cpp
+12 −9 velox/dwio/dwrf/test/utils/E2EWriterTestUtil.h
+49 −35 velox/dwio/dwrf/writer/FlushPolicy.cpp
+136 −7 velox/dwio/dwrf/writer/FlushPolicy.h
+60 −25 velox/dwio/dwrf/writer/WriterShared.cpp
+8 −6 velox/dwio/dwrf/writer/WriterShared.h
+26 −12 velox/dwio/parquet/reader/ParquetReader.cpp
+18 −1 velox/dwio/parquet/tests/ParquetReaderTest.cpp
+6 −6 velox/dwio/parquet/tests/ParquetTableScanTest.cpp
+12 −4 velox/dwio/parquet/tests/ParquetTpchTest.cpp
+10 −14 velox/exec/RowContainer.cpp
+42 −10 velox/exec/RowContainer.h
+44 −46 velox/exec/tests/AggregationTest.cpp
+2 −1 velox/exec/tests/DriverTest.cpp
+5 −5 velox/exec/tests/LocalPartitionTest.cpp
+4 −4 velox/exec/tests/MultiFragmentTest.cpp
+36 −26 velox/exec/tests/PlanNodeToStringTest.cpp
+36 −4 velox/exec/tests/RowContainerTest.cpp
+10 −18 velox/exec/tests/StreamingAggregationTest.cpp
+32 −10 velox/exec/tests/TableScanTest.cpp
+58 −38 velox/exec/tests/utils/PlanBuilder.cpp
+292 −57 velox/exec/tests/utils/PlanBuilder.h
+14 −2 velox/exec/tests/utils/QueryAssertions.cpp
+68 −23 velox/exec/tests/utils/TpchQueryBuilder.cpp
+1 −0 velox/exec/tests/utils/TpchQueryBuilder.h
+1 −0 velox/expression/CMakeLists.txt
+66 −0 velox/expression/CoalesceExpr.cpp
+37 −0 velox/expression/CoalesceExpr.h
+4 −1 velox/expression/ExprCompiler.cpp
+1 −0 velox/expression/tests/CMakeLists.txt
+26 −13 velox/expression/tests/CoalesceTest.cpp
+6 −6 velox/expression/tests/TryExprTest.cpp
+0 −1 velox/functions/prestosql/CMakeLists.txt
+0 −88 velox/functions/prestosql/Coalesce.cpp
+2 −3 velox/functions/prestosql/aggregates/benchmarks/PushdownBenchmark.cpp
+135 −1 velox/functions/prestosql/aggregates/tests/AggregationTestBase.cpp
+63 −4 velox/functions/prestosql/aggregates/tests/AggregationTestBase.h
+6 −6 velox/functions/prestosql/aggregates/tests/ApproxDistinctTest.cpp
+5 −3 velox/functions/prestosql/aggregates/tests/ApproxPercentileTest.cpp
+16 −15 velox/functions/prestosql/aggregates/tests/ArbitraryTest.cpp
+4 −4 velox/functions/prestosql/aggregates/tests/ArrayAggTest.cpp
+22 −19 velox/functions/prestosql/aggregates/tests/AverageAggregationTest.cpp
+5 −5 velox/functions/prestosql/aggregates/tests/BitwiseAggregationTest.cpp
+3 −3 velox/functions/prestosql/aggregates/tests/BoolAndOrTest.cpp
+14 −86 velox/functions/prestosql/aggregates/tests/ChecksumAggregateTest.cpp
+24 −74 velox/functions/prestosql/aggregates/tests/CountAggregationTest.cpp
+14 −13 velox/functions/prestosql/aggregates/tests/CountIfAggregationTest.cpp
+8 −62 velox/functions/prestosql/aggregates/tests/CovarianceAggregationTest.cpp
+12 −11 velox/functions/prestosql/aggregates/tests/MapAggTest.cpp
+10 −10 velox/functions/prestosql/aggregates/tests/MinMaxByAggregationTest.cpp
+15 −14 velox/functions/prestosql/aggregates/tests/MinMaxTest.cpp
+7 −7 velox/functions/prestosql/aggregates/tests/SumTest.cpp
+82 −210 velox/functions/prestosql/aggregates/tests/VarianceAggregationTest.cpp
+0 −1 velox/functions/prestosql/registration/GeneralFunctionsRegistration.cpp
+0 −1 velox/functions/prestosql/tests/CMakeLists.txt
+2 −2 velox/functions/prestosql/tests/FunctionBaseTest.h
+0 −1 velox/functions/sparksql/Register.cpp
+2 −1 velox/parse/TypeResolver.cpp
+1 −1 velox/substrait/tests/PlanConversionTest.cpp
+1 −1 velox/tpch/gen/CMakeLists.txt
+98 −0 velox/tpch/gen/DBGenIterator.cpp
+56 −0 velox/tpch/gen/DBGenIterator.h
+151 −22 velox/tpch/gen/TpchGen.cpp
+39 −0 velox/tpch/gen/TpchGen.h
+158 −2 velox/tpch/gen/tests/TpchGenTest.cpp
+24 −0 velox/type/Filter.cpp
+29 −2 velox/type/Filter.h
+1 −1 velox/vector/FlatVector.h
+1 −0 velox/vector/LazyVector.cpp
+34 −0 velox/vector/tests/LazyVectorTest.cpp

0 comments on commit 8bb71dd

Please sign in to comment.