Skip to content

Commit

Permalink
[native] Advance velox.
Browse files Browse the repository at this point in the history
  • Loading branch information
amitkdutta authored and aditi-pandit committed Jun 20, 2024
1 parent 815012f commit 21667e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion presto-native-execution/velox
Submodule velox updated 44 files
+66 −3 velox/common/memory/MemoryAllocator.cpp
+5 −0 velox/common/memory/MemoryAllocator.h
+15 −1 velox/common/process/Profiler.cpp
+7 −1 velox/common/process/Profiler.h
+56 −0 velox/common/process/tests/ProfilerTest.cpp
+11 −2 velox/connectors/Connector.h
+1 −0 velox/connectors/hive/CMakeLists.txt
+2 −1 velox/connectors/hive/HiveConfig.h
+2 −0 velox/connectors/hive/HiveConnector.cpp
+6 −0 velox/connectors/hive/HiveDataSource.cpp
+4 −0 velox/connectors/hive/HiveDataSource.h
+1 −0 velox/dwio/CMakeLists.txt
+17 −2 velox/dwio/common/CachedBufferedInput.h
+22 −0 velox/dwio/dwrf/test/CacheInputTest.cpp
+7 −0 velox/dwio/dwrf/test/OrcTest.h
+0 −150 velox/dwio/dwrf/test/ReaderTest.cpp
+ velox/dwio/dwrf/test/examples/orc_decimal.orc
+19 −0 velox/dwio/orc/CMakeLists.txt
+17 −0 velox/dwio/orc/reader/CMakeLists.txt
+27 −0 velox/dwio/orc/reader/OrcReader.cpp
+39 −0 velox/dwio/orc/reader/OrcReader.h
+22 −0 velox/dwio/orc/test/CMakeLists.txt
+240 −0 velox/dwio/orc/test/ReaderTest.cpp
+ velox/dwio/orc/test/examples/TestOrcFile.testDate1900.orc
+ velox/dwio/orc/test/examples/TestStringDictionary.testRowIndex.orc
+ velox/dwio/orc/test/examples/complextypes_iceberg.orc
+ velox/dwio/orc/test/examples/orc_all_type.orc
+ velox/dwio/orc/test/examples/orc_index_int_string.orc
+6 −4 velox/exec/Operator.cpp
+16 −0 velox/exec/SetAccumulator.h
+5 −1 velox/exec/Task.cpp
+9 −0 velox/exec/Task.h
+18 −1 velox/exec/benchmarks/HashTableBenchmark.cpp
+54 −0 velox/exec/tests/TableScanTest.cpp
+54 −0 velox/exec/tests/TaskTest.cpp
+62 −15 velox/functions/lib/string/StringCore.h
+8 −5 velox/functions/lib/string/StringImpl.h
+7 −5 velox/functions/lib/string/tests/StringImplTest.cpp
+2 −2 velox/functions/prestosql/StringFunctions.h
+52 −0 velox/functions/prestosql/aggregates/tests/CountAggregationTest.cpp
+87 −0 velox/functions/prestosql/aggregates/tests/SetAggTest.cpp
+105 −0 velox/functions/prestosql/aggregates/tests/SetUnionTest.cpp
+75 −0 velox/functions/prestosql/tests/StringFunctionsTest.cpp
+5 −5 velox/functions/sparksql/String.h

0 comments on commit 21667e2

Please sign in to comment.