Skip to content

Commit

Permalink
[native] Advance Velox version.
Browse files Browse the repository at this point in the history
  • Loading branch information
spershin authored and xiaoxmeng committed Oct 15, 2024
1 parent d280efc commit 5f3835e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion presto-native-execution/velox
Submodule velox updated 56 files
+6 −0 velox/common/base/Counters.cpp
+3 −0 velox/common/base/Counters.h
+10 −9 velox/common/caching/ScanTracker.cpp
+5 −31 velox/common/caching/ScanTracker.h
+9 −2 velox/connectors/Connector.h
+7 −0 velox/connectors/hive/HiveConfig.cpp
+10 −0 velox/connectors/hive/HiveConfig.h
+58 −13 velox/connectors/hive/HiveDataSink.cpp
+26 −8 velox/connectors/hive/HiveDataSink.h
+7 −0 velox/connectors/hive/tests/HiveConfigTest.cpp
+140 −10 velox/connectors/hive/tests/HiveDataSinkTest.cpp
+9 −0 velox/core/QueryConfig.h
+5 −0 velox/docs/configs.rst
+7 −0 velox/docs/monitoring/metrics.rst
+18 −0 velox/dwio/common/BufferedInput.h
+35 −51 velox/dwio/common/CachedBufferedInput.cpp
+0 −2 velox/dwio/common/CachedBufferedInput.h
+24 −37 velox/dwio/common/DirectBufferedInput.cpp
+4 −1 velox/dwio/common/DirectBufferedInput.h
+36 −10 velox/dwio/common/SortingWriter.cpp
+6 −2 velox/dwio/common/SortingWriter.h
+20 −3 velox/dwio/common/Writer.cpp
+31 −4 velox/dwio/common/Writer.h
+4 −0 velox/dwio/common/tests/WriterTest.cpp
+3 −0 velox/dwio/dwrf/common/Common.h
+1 −1 velox/dwio/dwrf/test/CacheInputTest.cpp
+4 −0 velox/dwio/dwrf/writer/Writer.h
+4 −5 velox/dwio/parquet/reader/ParquetReader.cpp
+4 −0 velox/dwio/parquet/writer/Writer.h
+4 −1 velox/exec/Driver.cpp
+10 −0 velox/exec/Driver.h
+6 −2 velox/exec/QueryDataWriter.cpp
+21 −0 velox/exec/TableWriter.cpp
+7 −3 velox/exec/TableWriter.h
+15 −0 velox/exec/tests/QueryTraceTest.cpp
+87 −0 velox/exec/tests/TableWriteTest.cpp
+11 −0 velox/exec/tests/utils/PlanBuilder.h
+53 −19 velox/functions/lib/DateTimeFormatter.cpp
+3 −3 velox/functions/lib/DateTimeFormatter.h
+58 −44 velox/functions/lib/tests/DateTimeFormatterTest.cpp
+41 −12 velox/functions/prestosql/DateTimeFunctions.h
+8 −10 velox/functions/prestosql/Reduce.cpp
+42 −0 velox/functions/prestosql/tests/MapTopNKeysTest.cpp
+81 −0 velox/functions/prestosql/tests/MapTopNTest.cpp
+8 −8 velox/functions/prestosql/tests/ReduceTest.cpp
+6 −2 velox/functions/prestosql/types/TimestampWithTimeZoneType.cpp
+37 −25 velox/functions/sparksql/DateTimeFunctions.h
+4 −5 velox/functions/sparksql/aggregates/DecimalSumAggregate.h
+60 −17 velox/functions/sparksql/aggregates/SumAggregate.cpp
+25 −0 velox/functions/sparksql/aggregates/tests/SumAggregationTest.cpp
+1 −1 velox/tool/trace/PartitionedOutputReplayer.cpp
+1 −1 velox/tool/trace/PartitionedOutputReplayer.h
+3 −0 velox/tool/trace/QueryReplayer.cpp
+77 −22 velox/tool/trace/tests/PartitionedOutputReplayerTest.cpp
+4 −2 velox/vector/BuilderTypeUtils.h
+4 −0 velox/vector/SimpleVector.h

0 comments on commit 5f3835e

Please sign in to comment.