Skip to content

Commit

Permalink
[native] Advance velox.
Browse files Browse the repository at this point in the history
  • Loading branch information
amitkdutta committed Feb 16, 2024
1 parent 366005e commit 0bc6f91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion presto-native-execution/velox
Submodule velox updated 59 files
+19 −5 CMakeLists.txt
+17 −1 Makefile
+140 −70 scripts/setup-centos8.sh
+21 −1 scripts/setup-helper-functions.sh
+0 −20 scripts/setup-macos.sh
+12 −23 scripts/setup-ubuntu.sh
+2 −2 velox/CMakeLists.txt
+1 −1 velox/codegen/CMakeLists.txt
+16 −14 velox/connectors/hive/CMakeLists.txt
+0 −5 velox/connectors/hive/FileHandle.h
+22 −4 velox/connectors/hive/HiveConnectorUtil.cpp
+8 −0 velox/connectors/hive/HiveConnectorUtil.h
+29 −11 velox/connectors/hive/SplitReader.cpp
+28 −0 velox/connectors/hive/iceberg/CMakeLists.txt
+69 −0 velox/connectors/hive/iceberg/IcebergDeleteFile.h
+55 −0 velox/connectors/hive/iceberg/IcebergMetadataColumns.h
+69 −0 velox/connectors/hive/iceberg/IcebergSplit.cpp
+56 −0 velox/connectors/hive/iceberg/IcebergSplit.h
+113 −0 velox/connectors/hive/iceberg/IcebergSplitReader.cpp
+62 −0 velox/connectors/hive/iceberg/IcebergSplitReader.h
+243 −0 velox/connectors/hive/iceberg/PositionalDeleteFileReader.cpp
+86 −0 velox/connectors/hive/iceberg/PositionalDeleteFileReader.h
+34 −0 velox/connectors/hive/iceberg/tests/CMakeLists.txt
+280 −0 velox/connectors/hive/iceberg/tests/IcebergReadTest.cpp
+1 −0 velox/connectors/hive/tests/CMakeLists.txt
+205 −0 velox/connectors/hive/tests/HiveConnectorUtilTest.cpp
+5 −5 velox/docs/develop/memory.rst
+10 −8 velox/docs/functions/spark/datetime.rst
+0 −1 velox/dwio/common/CMakeLists.txt
+7 −0 velox/dwio/common/Options.h
+1 −1 velox/dwio/dwrf/reader/FlatMapColumnReader.cpp
+1 −2 velox/exec/HashTable.cpp
+2 −1 velox/exec/MergeSource.cpp
+4 −0 velox/exec/Operator.h
+5 −2 velox/exec/SpillFile.cpp
+5 −6 velox/exec/Task.cpp
+1 −0 velox/exec/tests/CMakeLists.txt
+11 −0 velox/exec/tests/MultiFragmentTest.cpp
+33 −9 velox/exec/tests/TaskTest.cpp
+7 −154 velox/exec/tests/WindowTest.cpp
+27 −0 velox/functions/lib/string/StringCore.h
+14 −1 velox/functions/lib/string/StringImpl.h
+94 −0 velox/functions/lib/string/tests/StringImplTest.cpp
+18 −8 velox/functions/prestosql/aggregates/SetAggregates.cpp
+186 −0 velox/functions/prestosql/aggregates/tests/SetAggTest.cpp
+177 −0 velox/functions/prestosql/aggregates/tests/SetUnionTest.cpp
+5 −0 velox/functions/prestosql/benchmarks/CMakeLists.txt
+89 −0 velox/functions/prestosql/benchmarks/FieldReferenceBenchmark.cpp
+179 −0 velox/functions/prestosql/window/tests/AggregateWindowTest.cpp
+1 −1 velox/functions/prestosql/window/tests/CMakeLists.txt
+15 −7 velox/functions/sparksql/DateTimeFunctions.h
+3 −4 velox/functions/sparksql/Register.cpp
+39 −61 velox/functions/sparksql/tests/DateTimeFunctionsTest.cpp
+427 −254 velox/serializers/PrestoSerializer.cpp
+11 −32 velox/serializers/PrestoSerializer.h
+151 −89 velox/serializers/tests/PrestoSerializerTest.cpp
+2 −2 velox/type/OpaqueCustomTypes.h
+1 −1 velox/vector/CMakeLists.txt
+1 −2 velox/vector/tests/utils/CMakeLists.txt

0 comments on commit 0bc6f91

Please sign in to comment.