Commit b80ce99
# This is a combination of 17 commits.
# This is the 1st commit message:
[native] Add a test group for async data cache e2e tests.
# This is the commit message prestodb#2:
[native] Advance velox.
# This is the commit message prestodb#3:
Fix error when describing a nonexistent table
# This is the commit message prestodb#4:
[native] test modification.
# This is the commit message prestodb#5:
Changes to enable ssl/tls in hms
Co-authored-by: Arin Mathew <arin.mathew1@ibm.com>
Changes to move ssl related properties to seperate class
# This is the commit message prestodb#6:
[native] Add tests for UUID type
# This is the commit message prestodb#7:
Reintroduced json_extract to generate canonicalized output (prestodb#24879)
## Description
The original pull request
[prestodb#24614](prestodb#24614) incorrectly
compares canonicalizedJsonExtract and legacyJsonCast in the equals
function of an object. This issue can be seen in the code
[here](https://github.com/prestodb/presto/pull/24614/files#diff-e921c5d186f9d5daa836bc7330f52caf8c1b84d19cf42288d5a8a7c9a6d2a5d5R156).
As a result, whenever a SQL function requires caching, the cache is
never hit, leading to the creation of new SQL function objects
repeatedly. This behavior eventually causes an OOM error in the JVM
metaspace. and eventually this error led to UER SEV.
After the problematic comparison was updated and tested through shadow
cluster by @rschlussel , we are confident that the issue has been
resolved in this PR. Therefore, we plan to bring back the json
canonicalized extract
## Motivation and Context
Reintroduced json_extract to generate canonicalized output
## Impact
<!---Describe any public API or user-facing feature change or any
performance impact-->
low impact
## Test Plan
<!---Please fill in how you tested your change-->
N/A
## Contributor checklist
- [x] Please make sure your submission complies with our [contributing
guide](https://github.com/prestodb/presto/blob/master/CONTRIBUTING.md),
in particular [code
style](https://github.com/prestodb/presto/blob/master/CONTRIBUTING.md#code-style)
and [commit
standards](https://github.com/prestodb/presto/blob/master/CONTRIBUTING.md#commit-standards).
- [x] PR description addresses the issue accurately and concisely. If
the change is non-trivial, a GitHub Issue is referenced.
- [x] Documented new properties (with its default value), SQL syntax,
functions, or other functionality.
- [x] If release notes are required, they follow the [release notes
guidelines](https://github.com/prestodb/presto/wiki/Release-Notes-Guidelines).
- [x] Adequate tests were added if applicable.
- [x] CI passed.
## Release Notes
Please follow [release notes
guidelines](https://github.com/prestodb/presto/wiki/Release-Notes-Guidelines)
and fill in the release notes below.
```
== NO RELEASE NOTE ==
```
# This is the commit message prestodb#8:
Reuse JoinType in IndexJoinNode
Reuse JoinType instead of creating IndexJoinNode's own. JoinType is
already part of Prestissimo protocol. Adding IndexJoinNode with another
JoinType would cause naming conflict.
# This is the commit message prestodb#9:
Add jaro-winkler implementation, documentation and tests
# This is the commit message prestodb#10:
Add documentation for Iceberg support in PrestoCPP
# This is the commit message prestodb#11:
Add memory pool debug regex
# This is the commit message prestodb#12:
doc on hive csv limitations
# This is the commit message prestodb#13:
Add support for S3 WebIdentity authentication
# This is the commit message prestodb#14:
use com.facebook.airlift:security in presto-hive-metastore
# This is the commit message prestodb#15:
[native] Advance Velox
# This is the commit message prestodb#16:
[native] Add protocol for index lookup join plan
# This is the commit message prestodb#17:
[native] Add sidecar and sidecar plugin documentation1 parent c875296 commit b80ce99
79 files changed
Lines changed: 2965 additions & 573 deletions
File tree
- .github/workflows
- presto-base-arrow-flight/src
- main/java/com/facebook/plugin/arrow
- test/java/com/facebook/plugin/arrow
- presto-common/src/main/java/com/facebook/presto/common/function
- presto-delta/src/main/java/com/facebook/presto/delta
- presto-docs/src/main/sphinx
- connector
- develop
- functions
- presto_cpp
- presto-hive-common/src/main/java/com/facebook/presto/hive
- presto-hive-hadoop2/src/test/java/com/facebook/presto/hive/s3select
- presto-hive-metastore
- src
- main/java/com/facebook/presto/hive
- metastore/thrift
- test/java/com/facebook/presto/hive/metastore
- thrift
- presto-hive
- src
- main/java/com/facebook/presto/hive/s3
- test
- java/com/facebook/presto/hive
- containers
- s3
- resources/hive_ssl_enable
- presto-hudi/src/main/java/com/facebook/presto/hudi
- presto-iceberg/src/main/java/com/facebook/presto/iceberg
- presto-main-base/src
- main/java/com/facebook/presto
- operator/scalar
- sessionpropertyproviders
- sql
- analyzer
- planner
- optimizations
- plan
- test/java/com/facebook/presto
- operator/scalar
- sql
- analyzer
- gen
- planner
- iterative/rule/test
- type
- presto-native-execution
- presto_cpp
- main
- types
- presto_protocol
- connector
- hive
- iceberg
- core
- src/test/java/com/facebook/presto/nativeworker
- presto-spark-base/src/test/java/com/facebook/presto/spark/planner/optimizers
- presto-spi/src/main/java/com/facebook/presto/spi/plan
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
114 | 114 | | |
115 | 115 | | |
116 | 116 | | |
117 | | - | |
| 117 | + | |
118 | 118 | | |
119 | 119 | | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
Lines changed: 3 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
175 | 175 | | |
176 | 176 | | |
177 | 177 | | |
178 | | - | |
| 178 | + | |
| 179 | + | |
| 180 | + | |
179 | 181 | | |
180 | 182 | | |
181 | 183 | | |
| |||
Lines changed: 11 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
44 | 44 | | |
45 | 45 | | |
46 | 46 | | |
| 47 | + | |
47 | 48 | | |
48 | 49 | | |
49 | 50 | | |
| |||
137 | 138 | | |
138 | 139 | | |
139 | 140 | | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
140 | 151 | | |
141 | 152 | | |
142 | 153 | | |
| |||
Lines changed: 19 additions & 4 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
37 | 37 | | |
38 | 38 | | |
39 | 39 | | |
| 40 | + | |
40 | 41 | | |
41 | 42 | | |
42 | 43 | | |
| |||
50 | 51 | | |
51 | 52 | | |
52 | 53 | | |
53 | | - | |
| 54 | + | |
| 55 | + | |
54 | 56 | | |
55 | 57 | | |
56 | 58 | | |
| |||
64 | 66 | | |
65 | 67 | | |
66 | 68 | | |
| 69 | + | |
67 | 70 | | |
68 | 71 | | |
69 | 72 | | |
| |||
127 | 130 | | |
128 | 131 | | |
129 | 132 | | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
130 | 136 | | |
131 | 137 | | |
132 | 138 | | |
| |||
146 | 152 | | |
147 | 153 | | |
148 | 154 | | |
149 | | - | |
| 155 | + | |
| 156 | + | |
150 | 157 | | |
151 | 158 | | |
152 | 159 | | |
153 | 160 | | |
154 | 161 | | |
155 | 162 | | |
156 | 163 | | |
157 | | - | |
| 164 | + | |
158 | 165 | | |
159 | 166 | | |
160 | 167 | | |
| |||
176 | 183 | | |
177 | 184 | | |
178 | 185 | | |
| 186 | + | |
179 | 187 | | |
180 | 188 | | |
181 | 189 | | |
| |||
251 | 259 | | |
252 | 260 | | |
253 | 261 | | |
| 262 | + | |
| 263 | + | |
| 264 | + | |
| 265 | + | |
| 266 | + | |
| 267 | + | |
254 | 268 | | |
255 | 269 | | |
256 | 270 | | |
| |||
265 | 279 | | |
266 | 280 | | |
267 | 281 | | |
268 | | - | |
| 282 | + | |
| 283 | + | |
269 | 284 | | |
270 | 285 | | |
271 | 286 | | |
Lines changed: 2 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
44 | 44 | | |
45 | 45 | | |
46 | 46 | | |
| 47 | + | |
47 | 48 | | |
48 | 49 | | |
49 | 50 | | |
| |||
104 | 105 | | |
105 | 106 | | |
106 | 107 | | |
| 108 | + | |
107 | 109 | | |
108 | 110 | | |
109 | 111 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
213 | 213 | | |
214 | 214 | | |
215 | 215 | | |
216 | | - | |
| 216 | + | |
217 | 217 | | |
218 | | - | |
| 218 | + | |
219 | 219 | | |
220 | 220 | | |
221 | 221 | | |
| |||
232 | 232 | | |
233 | 233 | | |
234 | 234 | | |
235 | | - | |
| 235 | + | |
| 236 | + | |
| 237 | + | |
| 238 | + | |
| 239 | + | |
| 240 | + | |
| 241 | + | |
| 242 | + | |
| 243 | + | |
| 244 | + | |
| 245 | + | |
236 | 246 | | |
237 | 247 | | |
238 | 248 | | |
| |||
361 | 371 | | |
362 | 372 | | |
363 | 373 | | |
| 374 | + | |
| 375 | + | |
| 376 | + | |
| 377 | + | |
| 378 | + | |
| 379 | + | |
| 380 | + | |
364 | 381 | | |
365 | 382 | | |
366 | 383 | | |
| |||
1117 | 1134 | | |
1118 | 1135 | | |
1119 | 1136 | | |
| 1137 | + | |
| 1138 | + | |
| 1139 | + | |
1120 | 1140 | | |
| 1141 | + | |
| 1142 | + | |
| 1143 | + | |
| 1144 | + | |
| 1145 | + | |
| 1146 | + | |
| 1147 | + | |
| 1148 | + | |
| 1149 | + | |
| 1150 | + | |
| 1151 | + | |
| 1152 | + | |
| 1153 | + | |
| 1154 | + | |
| 1155 | + | |
| 1156 | + | |
| 1157 | + | |
| 1158 | + | |
| 1159 | + | |
| 1160 | + | |
| 1161 | + | |
| 1162 | + | |
| 1163 | + | |
| 1164 | + | |
| 1165 | + | |
| 1166 | + | |
| 1167 | + | |
| 1168 | + | |
| 1169 | + | |
| 1170 | + | |
| 1171 | + | |
| 1172 | + | |
| 1173 | + | |
| 1174 | + | |
| 1175 | + | |
| 1176 | + | |
| 1177 | + | |
| 1178 | + | |
| 1179 | + | |
| 1180 | + | |
| 1181 | + | |
| 1182 | + | |
| 1183 | + | |
| 1184 | + | |
| 1185 | + | |
| 1186 | + | |
| 1187 | + | |
| 1188 | + | |
| 1189 | + | |
0 commit comments