Skip to content

Commit

Permalink
[Native] Advance Velox version
Browse files Browse the repository at this point in the history
  • Loading branch information
aditi-pandit authored and xiaoxmeng committed Oct 12, 2023
1 parent 1216027 commit 035f523
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion presto-native-execution/velox
Submodule velox updated 55 files
+1 −1 build/deps/github_hashes/facebook/folly-rev.txt
+3 −0 build/fbcode_builder/getdeps.py
+5 −0 velox/common/base/AsyncSource.h
+1 −1 velox/common/base/CMakeLists.txt
+1 −0 velox/connectors/hive/CMakeLists.txt
+42 −255 velox/connectors/hive/HiveDataSource.cpp
+12 −39 velox/connectors/hive/HiveDataSource.h
+370 −119 velox/connectors/hive/HivePartitionFunction.cpp
+29 −4 velox/connectors/hive/HivePartitionFunction.h
+351 −0 velox/connectors/hive/SplitReader.cpp
+120 −0 velox/connectors/hive/SplitReader.h
+66 −4 velox/connectors/hive/benchmarks/HivePartitionFunctionBenchmark.cpp
+306 −0 velox/connectors/hive/tests/HivePartitionFunctionTest.cpp
+69 −5 velox/core/PlanNode.cpp
+34 −3 velox/core/PlanNode.h
+1 −1 velox/core/QueryConfig.h
+1 −0 velox/core/tests/PlanFragmentTest.cpp
+72 −0 velox/docs/develop/operators.rst
+6 −2 velox/docs/functions/presto/aggregate.rst
+0 −2 velox/dwio/parquet/writer/arrow/tests/ColumnWriterTest.cpp
+0 −2 velox/dwio/parquet/writer/arrow/tests/FileDeserializeTest.cpp
+0 −2 velox/dwio/parquet/writer/arrow/tests/FileSerializeTest.cpp
+3 −3 velox/dwio/parquet/writer/arrow/util/CMakeLists.txt
+0 −8 velox/dwio/parquet/writer/arrow/util/Compression.cpp
+567 −0 velox/dwio/parquet/writer/arrow/util/CompressionZlib.cpp
+13 −10 velox/exec/GroupId.cpp
+18 −5 velox/exec/HashTable.cpp
+1 −0 velox/exec/TableScan.cpp
+43 −14 velox/exec/tests/AggregationTest.cpp
+104 −0 velox/exec/tests/HashTableTest.cpp
+13 −12 velox/exec/tests/MultiFragmentTest.cpp
+7 −1 velox/exec/tests/PlanNodeSerdeTest.cpp
+11 −2 velox/exec/tests/PlanNodeToStringTest.cpp
+17 −13 velox/exec/tests/TableWriteTest.cpp
+60 −50 velox/exec/tests/utils/PlanBuilder.cpp
+42 −32 velox/exec/tests/utils/PlanBuilder.h
+14 −1 velox/expression/FieldReference.cpp
+2 −1 velox/functions/lib/CMakeLists.txt
+62 −0 velox/functions/lib/SubscriptUtil.cpp
+35 −23 velox/functions/lib/SubscriptUtil.h
+43 −16 velox/functions/prestosql/aggregates/ApproxPercentileAggregate.cpp
+26 −0 velox/functions/prestosql/aggregates/tests/ApproxPercentileTest.cpp
+1 −0 velox/parse/QueryPlanner.cpp
+254 −50 velox/serializers/PrestoSerializer.cpp
+8 −1 velox/serializers/PrestoSerializer.h
+51 −0 velox/serializers/tests/PrestoSerializerTest.cpp
+1 −1 velox/substrait/SubstraitToVeloxPlan.cpp
+1 −0 velox/type/CMakeLists.txt
+137 −0 velox/type/StringView.cpp
+13 −0 velox/type/StringView.h
+0 −1 velox/type/Type.cpp
+129 −0 velox/type/tests/StringViewTest.cpp
+25 −0 velox/vector/fuzzer/VectorFuzzer.cpp
+10 −1 velox/vector/fuzzer/VectorFuzzer.h
+7 −0 velox/vector/fuzzer/tests/VectorFuzzerTest.cpp

0 comments on commit 035f523

Please sign in to comment.