Skip to content

Commit

Permalink
[native] Advance velox.
Browse files Browse the repository at this point in the history
  • Loading branch information
amitkdutta committed Nov 8, 2024
1 parent 941e428 commit 12652e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion presto-native-execution/velox
Submodule velox updated 73 files
+7 −4 scripts/setup-adapters.sh
+7 −7 velox/common/base/PrefixSortConfig.h
+2 −0 velox/common/base/SpillConfig.cpp
+6 −0 velox/common/base/SpillConfig.h
+21 −6 velox/common/base/tests/SpillConfigTest.cpp
+0 −68 velox/connectors/hive/HiveConfig.cpp
+0 −80 velox/connectors/hive/HiveConfig.h
+3 −2 velox/connectors/hive/HiveConnectorUtil.cpp
+7 −9 velox/connectors/hive/HiveDataSink.cpp
+5 −6 velox/connectors/hive/HiveDataSink.h
+6 −1 velox/connectors/hive/storage_adapters/s3fs/CMakeLists.txt
+36 −29 velox/connectors/hive/storage_adapters/s3fs/RegisterS3FileSystem.cpp
+77 −0 velox/connectors/hive/storage_adapters/s3fs/S3Config.cpp
+221 −0 velox/connectors/hive/storage_adapters/s3fs/S3Config.h
+54 −62 velox/connectors/hive/storage_adapters/s3fs/S3FileSystem.cpp
+6 −6 velox/connectors/hive/storage_adapters/s3fs/S3FileSystem.h
+2 −2 velox/connectors/hive/storage_adapters/s3fs/S3Util.cpp
+26 −27 velox/connectors/hive/storage_adapters/s3fs/S3Util.h
+1 −1 velox/connectors/hive/storage_adapters/s3fs/S3WriteFile.h
+2 −1 velox/connectors/hive/storage_adapters/s3fs/tests/CMakeLists.txt
+93 −0 velox/connectors/hive/storage_adapters/s3fs/tests/S3ConfigTest.cpp
+4 −4 velox/connectors/hive/storage_adapters/s3fs/tests/S3FileSystemFinalizeTest.cpp
+2 −2 velox/connectors/hive/storage_adapters/s3fs/tests/S3FileSystemRegistrationTest.cpp
+22 −20 velox/connectors/hive/storage_adapters/s3fs/tests/S3FileSystemTest.cpp
+2 −2 velox/connectors/hive/storage_adapters/s3fs/tests/S3InsertTest.cpp
+118 −67 velox/connectors/hive/storage_adapters/s3fs/tests/S3MultipleEndpointsTest.cpp
+3 −5 velox/connectors/hive/storage_adapters/s3fs/tests/S3ReadTest.cpp
+10 −11 velox/connectors/hive/storage_adapters/s3fs/tests/S3UtilTest.cpp
+0 −36 velox/connectors/hive/tests/HiveConfigTest.cpp
+10 −0 velox/core/QueryConfig.h
+5 −0 velox/docs/configs.rst
+13 −9 velox/docs/functions/spark/datetime.rst
+2 −1 velox/dwio/common/MetadataFilter.cpp
+5 −3 velox/dwio/common/SelectiveRepeatedColumnReader.h
+66 −0 velox/dwio/common/tests/utils/E2EFilterTestBase.cpp
+10 −0 velox/dwio/common/tests/utils/E2EFilterTestBase.h
+3 −0 velox/exec/Driver.cpp
+33 −0 velox/exec/NestedLoopJoinBuild.cpp
+2 −0 velox/exec/NestedLoopJoinBuild.h
+19 −2 velox/exec/PrefixSort.cpp
+15 −26 velox/exec/PrefixSort.h
+1 −1 velox/exec/SortBuffer.cpp
+1 −1 velox/exec/SortWindowBuild.cpp
+18 −1 velox/exec/Spill.cpp
+6 −0 velox/exec/Spill.h
+27 −7 velox/exec/Spiller.cpp
+1 −0 velox/exec/Spiller.h
+53 −0 velox/exec/tests/NestedLoopJoinTest.cpp
+2 −2 velox/exec/tests/PrefixSortTest.cpp
+28 −14 velox/exec/tests/SortBufferTest.cpp
+34 −11 velox/exec/tests/SpillTest.cpp
+20 −2 velox/exec/tests/SpillerTest.cpp
+19 −6 velox/exec/tests/WindowTest.cpp
+203 −172 velox/expression/ExprToSubfieldFilter.cpp
+90 −11 velox/expression/ExprToSubfieldFilter.h
+123 −15 velox/expression/tests/ExprToSubfieldFilterTest.cpp
+1 −1 velox/external/hdfs/CMakeLists.txt
+1 −2 velox/functions/lib/CMakeLists.txt
+3 −2 velox/functions/prestosql/TypeOf.cpp
+3 −2 velox/functions/prestosql/json/JsonExtractor.cpp
+18 −0 velox/functions/prestosql/json/tests/JsonExtractorTest.cpp
+18 −2 velox/functions/prestosql/tests/DateTimeFunctionsTest.cpp
+110 −0 velox/functions/prestosql/tests/IPPrefixCastTest.cpp
+98 −7 velox/functions/prestosql/types/IPPrefixType.cpp
+133 −1 velox/functions/prestosql/types/IPPrefixType.h
+66 −29 velox/functions/sparksql/DateTimeFunctions.h
+25 −0 velox/functions/sparksql/tests/DateTimeFunctionsTest.cpp
+1 −1 velox/tool/trace/TableWriterReplayer.cpp
+4 −4 velox/type/tz/CMakeLists.txt
+80 −0 velox/type/tz/GenTimeZoneNames.java
+40 −57 velox/type/tz/TimeZoneMap.cpp
+1,723 −0 velox/type/tz/TimeZoneNames.cpp
+31 −0 velox/type/tz/TimeZoneNames.h

0 comments on commit 12652e4

Please sign in to comment.