-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Instantiate collection builder with factory method #11118
Conversation
.../trino-pinot/src/test/java/io/trino/plugin/pinot/auth/TestPinotAuthenticationTypeConfig.java
Outdated
Show resolved
Hide resolved
63c5aee
to
a08d8eb
Compare
CI:
|
This one is more pertinent:
This is worrying. It happened twice on one of my other PRs (in a completely different build job), then went away. |
There's also:
in |
|
a08d8eb
to
dd07005
Compare
(rebased to resolve conflicts) |
|
kudu failed again:
|
04b3740
to
0066f3b
Compare
(rebased on master to fix new offences; no fixes yet) |
btw kudu tests were green in last run (https://github.com/trinodb/trino/runs/5319940309?check_suite_focus=true) before rebase |
The immutable collection classes provide `Builder` which can be instantiated with constructor or static factory method. The latter is preferred, and now also required.
0066f3b
to
d7373a3
Compare
The immutable collection classes provide
Builder
which can beinstantiated with constructor or static factory method. The latter is
preferred, and now also required.