Commit 63e021e
committed
File tree
3 files changed
+19
-20
lines changed- presto-native-execution
- presto_cpp/main/operators
- tests
3 files changed
+19
-20
lines changedLines changed: 11 additions & 12 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
120 | 120 | | |
121 | 121 | | |
122 | 122 | | |
123 | | - | |
| 123 | + | |
124 | 124 | | |
125 | 125 | | |
126 | 126 | | |
127 | 127 | | |
128 | 128 | | |
129 | 129 | | |
130 | | - | |
131 | | - | |
132 | | - | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
133 | 133 | | |
134 | 134 | | |
135 | 135 | | |
136 | 136 | | |
137 | 137 | | |
138 | 138 | | |
139 | 139 | | |
140 | | - | |
141 | | - | |
142 | | - | |
| 140 | + | |
| 141 | + | |
| 142 | + | |
143 | 143 | | |
144 | 144 | | |
145 | 145 | | |
146 | | - | |
| 146 | + | |
147 | 147 | | |
148 | | - | |
149 | | - | |
150 | | - | |
151 | | - | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
152 | 151 | | |
153 | 152 | | |
154 | 153 | | |
| |||
Lines changed: 7 additions & 7 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
42 | 42 | | |
43 | 43 | | |
44 | 44 | | |
45 | | - | |
| 45 | + | |
46 | 46 | | |
47 | 47 | | |
48 | 48 | | |
| |||
153 | 153 | | |
154 | 154 | | |
155 | 155 | | |
156 | | - | |
| 156 | + | |
157 | 157 | | |
158 | 158 | | |
159 | 159 | | |
| |||
248 | 248 | | |
249 | 249 | | |
250 | 250 | | |
251 | | - | |
| 251 | + | |
252 | 252 | | |
253 | 253 | | |
254 | 254 | | |
| |||
1033 | 1033 | | |
1034 | 1034 | | |
1035 | 1035 | | |
1036 | | - | |
| 1036 | + | |
1037 | 1037 | | |
1038 | 1038 | | |
1039 | 1039 | | |
| |||
1074 | 1074 | | |
1075 | 1075 | | |
1076 | 1076 | | |
1077 | | - | |
| 1077 | + | |
1078 | 1078 | | |
1079 | 1079 | | |
1080 | 1080 | | |
| |||
1131 | 1131 | | |
1132 | 1132 | | |
1133 | 1133 | | |
1134 | | - | |
| 1134 | + | |
1135 | 1135 | | |
1136 | 1136 | | |
1137 | 1137 | | |
| |||
1160 | 1160 | | |
1161 | 1161 | | |
1162 | 1162 | | |
1163 | | - | |
| 1163 | + | |
1164 | 1164 | | |
1165 | 1165 | | |
1166 | 1166 | | |
| |||
- velox/benchmarks/QueryBenchmarkBase.cpp+19-10
- velox/benchmarks/QueryBenchmarkBase.h+5-2
- velox/benchmarks/tpch/TpchBenchmark.cpp+87-100
- velox/benchmarks/tpch/TpchBenchmark.h+27
- velox/benchmarks/tpch/TpchBenchmarkMain.cpp+1
- velox/docs/functions/spark/aggregate.rst+5-4
- velox/docs/functions/spark/datetime.rst+1-1
- velox/docs/functions/spark/decimal.rst+32-1
- velox/docs/functions/spark/math.rst+18-1
- velox/dwio/common/ParallelUnitLoader.cpp+7-3
- velox/exec/Exchange.cpp+5-6
- velox/exec/ExchangeClient.h+2-2
- velox/exec/ExchangeSource.h+1-1
- velox/exec/Operator.h+5
- velox/exec/tests/MultiFragmentTest.cpp+1-1
- velox/exec/tests/utils/LocalExchangeSource.cpp+2-2
- velox/experimental/cudf/CMakeLists.txt+4
- velox/experimental/cudf/benchmarks/CMakeLists.txt+22
- velox/experimental/cudf/benchmarks/CudfTpchBenchmark.cpp+161
- velox/experimental/cudf/benchmarks/CudfTpchBenchmark.h+39
- velox/experimental/cudf/benchmarks/benchmark.sh+77
- velox/experimental/cudf/connectors/hive/CMakeLists.txt+5-1
- velox/experimental/cudf/exec/CudfOperator.h+38
- velox/experimental/cudf/exec/ToCudf.cpp+9-4
- velox/expression/fuzzer/ExpressionFuzzerTest.cpp+1
- velox/functions/lib/DateTimeUtil.h+3-11
- velox/functions/lib/RegistrationHelpers.h+10-4
- velox/functions/prestosql/CMakeLists.txt+1
- velox/functions/prestosql/InRewrite.cpp+79
- velox/functions/prestosql/InRewrite.h+31
- velox/functions/prestosql/registration/GeneralFunctionsRegistration.cpp+3
- velox/functions/prestosql/tests/CMakeLists.txt+1
- velox/functions/prestosql/tests/InRewriteTest.cpp+118
- velox/functions/sparksql/Arithmetic.h+40
- velox/functions/sparksql/DateTimeFunctions.h+4-2
- velox/functions/sparksql/DecimalArithmetic.cpp+130-24
- velox/functions/sparksql/DecimalArithmetic.h+2
- velox/functions/sparksql/DecimalUtil.h+27
- velox/functions/sparksql/aggregates/AverageAggregate.cpp+66-25
- velox/functions/sparksql/aggregates/DecimalAverageAggregate.h+246
- velox/functions/sparksql/aggregates/tests/AverageAggregationTest.cpp+250-3
- velox/functions/sparksql/registration/RegisterDatetime.cpp+6
- velox/functions/sparksql/registration/RegisterMath.cpp+5
- velox/functions/sparksql/tests/ArithmeticTest.cpp+59-5
- velox/functions/sparksql/tests/DateTimeFunctionsTest.cpp+18
- velox/functions/sparksql/tests/DecimalArithmeticTest.cpp+118
- velox/functions/sparksql/tests/DecimalUtilTest.cpp+28
- velox/type/tests/ConversionsTest.cpp+1-1
- velox/vector/FlatVector-inl.h+1-1
0 commit comments