File tree
2 files changed
+47
-1
lines changed- presto-native-execution
- presto_cpp/main/connectors
2 files changed
+47
-1
lines changedLines changed: 46 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
108 | 108 | | |
109 | 109 | | |
110 | 110 | | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
| 139 | + | |
| 140 | + | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
| 152 | + | |
111 | 153 | | |
112 | 154 | | |
113 | 155 | | |
| |||
293 | 335 | | |
294 | 336 | | |
295 | 337 | | |
| 338 | + | |
| 339 | + | |
296 | 340 | | |
297 | 341 | | |
298 | 342 | | |
| |||
321 | 365 | | |
322 | 366 | | |
323 | 367 | | |
| 368 | + | |
| 369 | + | |
324 | 370 | | |
325 | 371 | | |
326 | 372 | | |
| |||
- scripts/setup-centos9.sh+2-2
- velox/common/base/RuntimeMetrics.h+8
- velox/connectors/hive/HiveConnectorUtil.cpp+11-2
- velox/connectors/hive/HiveConnectorUtil.h+38-2
- velox/connectors/hive/HiveDataSource.cpp+24-10
- velox/connectors/hive/HiveDataSource.h+1-1
- velox/connectors/hive/TableHandle.cpp+22-3
- velox/connectors/hive/TableHandle.h+11-1
- velox/connectors/hive/iceberg/CMakeLists.txt+2-1
- velox/connectors/hive/iceberg/IcebergDataSink.cpp+8-2
- velox/connectors/hive/iceberg/IcebergDataSink.h+31
- velox/connectors/hive/iceberg/PartitionSpec.cpp+157
- velox/connectors/hive/iceberg/PartitionSpec.h+145
- velox/connectors/hive/iceberg/tests/CMakeLists.txt+8-1
- velox/connectors/hive/iceberg/tests/IcebergInsertTest.cpp+6-11
- velox/connectors/hive/iceberg/tests/IcebergTestBase.cpp+68-13
- velox/connectors/hive/iceberg/tests/IcebergTestBase.h+22-4
- velox/connectors/hive/iceberg/tests/PartitionSpecTest.cpp+134
- velox/connectors/hive/tests/HiveConnectorTest.cpp+18-18
- velox/dwio/common/ColumnVisitors.h+1-1
- velox/dwio/common/FormatData.h+6-6
- velox/dwio/common/ScanSpec.h+16-16
- velox/dwio/common/SelectiveColumnReader.cpp+2-2
- velox/dwio/common/SelectiveStructColumnReader.cpp-1
- velox/dwio/common/SelectiveStructColumnReader.h+2-2
- velox/dwio/common/Statistics.h+3-1
- velox/exec/HashProbe.cpp+4-2
- velox/exec/fuzzer/CMakeLists.txt+8
- velox/exec/fuzzer/ReferenceQueryRunner.h+2-1
- velox/exec/fuzzer/VeloxQueryRunner.cpp+245
- velox/exec/fuzzer/VeloxQueryRunner.h+77
- velox/exec/tests/HashJoinTest.cpp+130-38
- velox/exec/tests/PlanNodeSerdeTest.cpp+37-22
- velox/exec/tests/PrintPlanWithStatsTest.cpp+7-13
- velox/exec/tests/TableScanTest.cpp+2-2
- velox/exec/tests/utils/PlanBuilder.cpp+5
- velox/exec/tests/utils/PlanBuilder.h+3
- velox/experimental/cudf/tests/CMakeLists.txt+105-81
- velox/experimental/cudf/tests/S3ReadTest.cpp+112
- velox/expression/tests/CustomTypeTest.cpp+1
- velox/functions/lib/DateTimeUtil.h+54-6
- velox/functions/prestosql/BinaryFunctions.h+5-2
- velox/functions/prestosql/DateTimeFunctions.h+29-8
- velox/functions/prestosql/DateTimeImpl.h+8-6
- velox/functions/prestosql/TypeOf.cpp+4
- velox/functions/prestosql/registration/BinaryFunctionsRegistration.cpp+4
- velox/functions/prestosql/registration/DateTimeFunctionsRegistration.cpp+2
- velox/functions/prestosql/tests/BinaryFunctionsTest.cpp+36
- velox/functions/prestosql/tests/CMakeLists.txt+1
- velox/functions/prestosql/tests/DateTimeFunctionsTest.cpp+62-4
- velox/functions/prestosql/tests/KHyperLogLogCastTest.cpp+48
- velox/functions/prestosql/tests/TimeWithTimezoneCastTest.cpp+120-96
- velox/functions/prestosql/tests/TypeOfTest.cpp+2
- velox/functions/prestosql/tests/utils/FunctionBaseTest.cpp+4
- velox/functions/prestosql/types/CMakeLists.txt+1
- velox/functions/prestosql/types/KHyperLogLogRegistration.cpp+48
- velox/functions/prestosql/types/KHyperLogLogRegistration.h+22
- velox/functions/prestosql/types/KHyperLogLogType.h+65
- velox/functions/prestosql/types/TimeWithTimezoneRegistration.cpp+32-20
- velox/functions/prestosql/types/tests/CMakeLists.txt+1
- velox/functions/prestosql/types/tests/KHyperLogLogTypeTest.cpp+51
- velox/functions/prestosql/types/tests/TimeWithTimezoneTypeTest.cpp+35-24
- velox/type/Time.cpp+6-1
- velox/type/Time.h+54
0 commit comments