Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion presto-native-execution/velox
Submodule velox updated 58 files
+4 −0 velox/buffer/Buffer.h
+1 −1 velox/connectors/hive/CMakeLists.txt
+41 −8 velox/connectors/hive/HiveDataSink.cpp
+54 −1 velox/connectors/hive/HiveDataSink.h
+102 −0 velox/connectors/hive/HivePartitionName.cpp
+172 −0 velox/connectors/hive/HivePartitionName.h
+0 −147 velox/connectors/hive/HivePartitionUtil.cpp
+0 −77 velox/connectors/hive/HivePartitionUtil.h
+2 −16 velox/connectors/hive/PartitionIdGenerator.cpp
+11 −11 velox/connectors/hive/PartitionIdGenerator.h
+1 −1 velox/connectors/hive/iceberg/CMakeLists.txt
+175 −7 velox/connectors/hive/iceberg/IcebergDataSink.cpp
+55 −0 velox/connectors/hive/iceberg/IcebergDataSink.h
+62 −10 velox/connectors/hive/iceberg/IcebergPartitionName.cpp
+114 −0 velox/connectors/hive/iceberg/IcebergPartitionName.h
+0 −69 velox/connectors/hive/iceberg/IcebergPartitionPath.h
+2 −1 velox/connectors/hive/iceberg/tests/CMakeLists.txt
+6 −1 velox/connectors/hive/iceberg/tests/IcebergTestBase.cpp
+3 −0 velox/connectors/hive/iceberg/tests/IcebergTestBase.h
+480 −0 velox/connectors/hive/iceberg/tests/PartitionNameTest.cpp
+8 −8 velox/connectors/hive/iceberg/tests/PartitionValueFormatterTest.cpp
+1 −10 velox/connectors/hive/iceberg/tests/TransformTest.cpp
+1 −1 velox/connectors/hive/tests/CMakeLists.txt
+27 −16 velox/connectors/hive/tests/HivePartitionNameTest.cpp
+27 −17 velox/connectors/hive/tests/PartitionIdGeneratorTest.cpp
+136 −128 velox/docs/functions.rst
+120 −100 velox/docs/functions/presto/coverage.rst
+1 −0 velox/dwio/catalog/fbhive/FileUtils.cpp
+2 −1 velox/dwio/catalog/fbhive/FileUtils.h
+7 −1 velox/dwio/catalog/fbhive/test/FileUtilsTests.cpp
+13 −0 velox/exec/Driver.cpp
+5 −0 velox/exec/OperatorStats.h
+3 −1 velox/exec/OperatorUtils.cpp
+3 −3 velox/exec/Task.cpp
+4 −0 velox/exec/fuzzer/PrestoQueryRunnerIntermediateTypeTransforms.cpp
+11 −0 velox/exec/tests/PrintPlanWithStatsTest.cpp
+3 −0 velox/experimental/cudf/exec/CudfConversion.cpp
+1 −1 velox/experimental/cudf/vector/CudfVector.cpp
+1 −0 velox/expression/ComplexViewTypes.h
+1 −0 velox/expression/DecodedArgs.h
+6 −0 velox/functions/prestosql/coverage/data/all_scalar_functions.txt
+1 −0 velox/functions/prestosql/types/CMakeLists.txt
+4 −74 velox/functions/prestosql/types/TimeWithTimezoneRegistration.cpp
+94 −0 velox/functions/prestosql/types/TimeWithTimezoneType.cpp
+1 −0 velox/functions/prestosql/types/fuzzer_utils/CMakeLists.txt
+57 −0 velox/functions/prestosql/types/fuzzer_utils/TimeWithTimezoneInputGenerator.cpp
+49 −0 velox/functions/prestosql/types/fuzzer_utils/TimeWithTimezoneInputGenerator.h
+1 −0 velox/functions/prestosql/types/fuzzer_utils/tests/CMakeLists.txt
+79 −0 velox/functions/prestosql/types/fuzzer_utils/tests/TimeWithTimezoneInputGeneratorTest.cpp
+5 −0 velox/vector/BaseVector.h
+8 −2 velox/vector/ConstantVector.h
+0 −13 velox/vector/FlatMapVector.cpp
+6 −1 velox/vector/FlatMapVector.h
+91 −15 velox/vector/FlatVector-inl.h
+9 −19 velox/vector/FlatVector.h
+1 −1 velox/vector/SequenceVector.h
+1 −0 velox/vector/tests/CMakeLists.txt
+134 −101 velox/vector/tests/VectorTest.cpp
Loading