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 66 files
+0 −1 CMake/resolve_dependency_modules/README.md
+0 −51 CMake/resolve_dependency_modules/cpr.cmake
+0 −41 CMake/resolve_dependency_modules/cpr/cpr-libcurl-compatible.patch
+0 −24 CMake/resolve_dependency_modules/cpr/cpr-remove-sancheck.patch
+1 −0 CMake/resolve_dependency_modules/cudf.cmake
+1 −16 CMake/resolve_dependency_modules/curl.cmake
+42 −0 CMake/resolve_dependency_modules/curl/CMakeLists.txt
+3 −0 CMake/resolve_dependency_modules/duckdb.cmake
+4 −0 CMake/resolve_dependency_modules/faiss.cmake
+2 −0 CMake/resolve_dependency_modules/re2.cmake
+12 −9 CMakeLists.txt
+2 −2 scripts/setup-centos-adapters.sh
+2 −2 scripts/setup-common.sh
+1 −1 scripts/setup-fedora.sh
+2 −2 scripts/setup-macos.sh
+2 −2 scripts/setup-ubuntu.sh
+192 −0 velox/common/encode/Base32.cpp
+80 −0 velox/common/encode/Base32.h
+1 −1 velox/common/encode/CMakeLists.txt
+1 −0 velox/connectors/hive/iceberg/CMakeLists.txt
+85 −0 velox/connectors/hive/iceberg/IcebergPartitionPath.cpp
+69 −0 velox/connectors/hive/iceberg/IcebergPartitionPath.h
+1 −0 velox/connectors/hive/iceberg/tests/CMakeLists.txt
+145 −0 velox/connectors/hive/iceberg/tests/IcebergPartitionPathTest.cpp
+10 −0 velox/core/QueryConfig.h
+6 −0 velox/docs/configs.rst
+1 −0 velox/exec/CMakeLists.txt
+101 −30 velox/exec/Exchange.cpp
+13 −5 velox/exec/Exchange.h
+5 −1 velox/exec/OperatorUtils.cpp
+4 −4 velox/exec/SortBuffer.cpp
+12 −5 velox/exec/SortWindowBuild.cpp
+5 −1 velox/exec/SortWindowBuild.h
+5 −5 velox/exec/SpatialJoinBuild.h
+6 −7 velox/exec/SpatialJoinProbe.cpp
+30 −18 velox/exec/SpatialJoinProbe.h
+192 −0 velox/exec/SubPartitionedSortWindowBuild.cpp
+95 −0 velox/exec/SubPartitionedSortWindowBuild.h
+34 −11 velox/exec/Window.cpp
+4 −2 velox/exec/WindowBuild.h
+14 −0 velox/exec/benchmarks/CMakeLists.txt
+407 −0 velox/exec/benchmarks/WindowSubPartitionedSortBenchmark.cpp
+1 −1 velox/exec/fuzzer/CMakeLists.txt
+82 −27 velox/exec/fuzzer/PrestoQueryRunner.cpp
+0 −1 velox/exec/fuzzer/VeloxQueryRunner.cpp
+0 −8 velox/exec/tests/CMakeLists.txt
+0 −51 velox/exec/tests/CprHttpClientTest.cpp
+154 −3 velox/exec/tests/MultiFragmentTest.cpp
+69 −1 velox/exec/tests/OperatorUtilsTest.cpp
+116 −0 velox/exec/tests/WindowTest.cpp
+1 −0 velox/expression/tests/ExpressionVerifier.cpp
+21 −0 velox/functions/prestosql/BinaryFunctions.h
+15 −0 velox/functions/prestosql/DateTimeFunctions.h
+87 −0 velox/functions/prestosql/StringFunctions.h
+5 −0 velox/functions/prestosql/registration/BinaryFunctionsRegistration.cpp
+2 −0 velox/functions/prestosql/registration/DateTimeFunctionsRegistration.cpp
+2 −0 velox/functions/prestosql/registration/StringFunctionsRegistration.cpp
+63 −0 velox/functions/prestosql/tests/BinaryFunctionsTest.cpp
+38 −0 velox/functions/prestosql/tests/DateTimeFunctionsTest.cpp
+59 −0 velox/functions/prestosql/tests/StringFunctionsTest.cpp
+433 −1 velox/functions/prestosql/tests/TimeWithTimezoneCastTest.cpp
+303 −0 velox/functions/prestosql/tests/TimestampWithTimeZoneCastTest.cpp
+120 −23 velox/functions/prestosql/types/TimeWithTimezoneRegistration.cpp
+77 −0 velox/functions/prestosql/types/TimestampWithTimeZoneRegistration.cpp
+10 −0 velox/type/tz/TimeZoneMap.h
+51 −0 velox/type/tz/tests/TimeZoneMapTest.cpp
Loading