Skip to content

Commit

Permalink
[native] Advance velox.
Browse files Browse the repository at this point in the history
  • Loading branch information
amitkdutta committed Dec 18, 2024
1 parent f1e1fe5 commit 0c37b24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion presto-native-execution/velox
Submodule velox updated 61 files
+7 −5 .github/workflows/build-metrics.yml
+4 −0 velox/common/testutil/CMakeLists.txt
+67 −0 velox/common/testutil/OutputMatcher.cpp
+47 −0 velox/common/testutil/OutputMatcher.h
+16 −10 velox/connectors/hive/storage_adapters/hdfs/HdfsFileSystem.cpp
+8 −2 velox/connectors/hive/storage_adapters/hdfs/HdfsFileSystem.h
+8 −4 velox/connectors/hive/storage_adapters/hdfs/tests/HdfsFileSystemTest.cpp
+3 −2 velox/connectors/tpch/TpchConnector.cpp
+126 −75 velox/docs/develop/debugging/tracing.rst
+ velox/docs/develop/images/trace-arch.png
+1 −0 velox/dwio/common/Options.h
+7 −5 velox/exec/GroupingSet.cpp
+4 −1 velox/exec/GroupingSet.h
+21 −21 velox/exec/HashProbe.cpp
+8 −0 velox/exec/OperatorTraceReader.cpp
+17 −16 velox/exec/OperatorTraceWriter.cpp
+0 −1 velox/exec/OperatorTraceWriter.h
+35 −1 velox/exec/OutputBuffer.h
+46 −0 velox/exec/Task.cpp
+23 −95 velox/exec/Task.h
+23 −5 velox/exec/Trace.cpp
+12 −2 velox/exec/Trace.h
+36 −10 velox/exec/fuzzer/DuckQueryRunner.cpp
+104 −41 velox/exec/fuzzer/JoinFuzzer.cpp
+36 −11 velox/exec/fuzzer/PrestoQueryRunner.cpp
+1 −0 velox/exec/tests/CMakeLists.txt
+60 −42 velox/exec/tests/HashJoinTest.cpp
+4 −0 velox/exec/tests/OperatorTraceTest.cpp
+38 −1 velox/exec/tests/OutputBufferManagerTest.cpp
+7 −43 velox/exec/tests/PrintPlanWithStatsTest.cpp
+3 −1 velox/exec/tests/TableWriteTest.cpp
+9 −1 velox/exec/tests/TraceUtilTest.cpp
+1 −1 velox/functions/prestosql/aggregates/ClassificationAggregation.cpp
+1 −2 velox/functions/prestosql/aggregates/tests/ClassificationAggregationTest.cpp
+2 −0 velox/functions/remote/CMakeLists.txt
+29 −0 velox/functions/remote/benchmarks/CMakeLists.txt
+125 −0 velox/functions/remote/benchmarks/LocalRemoteComparisonBenchmark.cpp
+1 −0 velox/functions/remote/client/tests/CMakeLists.txt
+10 −59 velox/functions/remote/client/tests/RemoteFunctionTest.cpp
+19 −0 velox/functions/remote/utils/CMakeLists.txt
+74 −0 velox/functions/remote/utils/RemoteFunctionServiceProvider.cpp
+91 −0 velox/functions/remote/utils/RemoteFunctionServiceProvider.h
+14 −10 velox/tool/trace/TraceReplayRunner.cpp
+1 −1 velox/tool/trace/TraceReplayRunner.h
+66 −1 velox/tool/trace/tests/TableScanReplayerTest.cpp
+1 −1 velox/tpch/gen/TpchGen.cpp
+10 −7 velox/tpch/gen/dbgen/bm_utils.cpp
+58 −30 velox/tpch/gen/dbgen/build.cpp
+1 −1 velox/tpch/gen/dbgen/include/dbgen/dss.h
+69 −44 velox/tpch/gen/dbgen/include/tpch_constants.hpp
+19 −4 velox/tpch/gen/dbgen/permute.cpp
+21 −5 velox/tpch/gen/dbgen/rnd.cpp
+17 −2 velox/tpch/gen/dbgen/rng64.cpp
+23 −20 velox/tpch/gen/dbgen/speed_seed.cpp
+2 −2 velox/tpch/gen/dbgen/text.cpp
+3 −2 velox/vector/LazyVector.h
+258 −14 velox/vector/VectorPrinter.cpp
+69 −0 velox/vector/VectorPrinter.h
+1 −0 velox/vector/tests/CMakeLists.txt
+5 −3 velox/vector/tests/CopyPreserveEncodingsTest.cpp
+100 −2 velox/vector/tests/VectorPrinterTest.cpp

0 comments on commit 0c37b24

Please sign in to comment.