nastra commented on code in PR #14994:
URL: https://github.com/apache/iceberg/pull/14994#discussion_r2675167426
##########
core/src/main/java/org/apache/iceberg/rest/responses/FetchPlanningResultResponse.java:
##########
@@ -66,16 +76,22 @@ public static class Builder
private Builder() {}
private PlanStatus planStatus;
+ private final List<Credential> credentials = Lists.newArrayList();
public Builder withPlanStatus(PlanStatus status) {
this.planStatus = status;
return this;
}
+ public Builder withCredentials(List<Credential> credentialsToAdd) {
+ credentials.addAll(credentialsToAdd);
Review Comment:
I'll follow up in a separate PR on this, since we have a few places that we
would want to adjust in that case
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]