[
https://issues.apache.org/jira/browse/CALCITE-4884?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17445759#comment-17445759
]
Chunwei Lei edited comment on CALCITE-4884 at 11/18/21, 9:07 AM:
-----------------------------------------------------------------
[~zabetak] , I opened another issue(CALCITE-4893) which can be taken as an
example. Maybe we can discuss it there.
was (Author: chunwei lei):
[~zabetak] , I opened another
issue([CALCITE-4893|https://issues.apache.org/jira/browse/CALCITE-4893]) which
can be taken as an example. Maybe we can discuss it there.
> Provide a new constructor for RelJsonWriter to allow customized JsonBuilder
> ---------------------------------------------------------------------------
>
> Key: CALCITE-4884
> URL: https://issues.apache.org/jira/browse/CALCITE-4884
> Project: Calcite
> Issue Type: Improvement
> Reporter: Chunwei Lei
> Assignee: Chunwei Lei
> Priority: Major
> Labels: pull-request-available
> Fix For: 1.29.0
>
> Time Spent: 50m
> Remaining Estimate: 0h
>
> Currently JsonBuilder in RelJsonWriter cannot be customized due to it being
> created in the constructor. We can provide a new constructor for
> RelJsonWriter to allow customized JsonBuilder.
> {code:java}
> // code placeholder
> public RelJsonWriter() {
> jsonBuilder = new JsonBuilder();
> relList = jsonBuilder.list();
> relJson = new RelJson(jsonBuilder);
> }
> // the new constrctor suggested.
> public RelJsonWriter(JsonBuilder jsonBuilder) {
> this.jsonBuilder = jsonBuilder;
> relList = jsonBuilder.list();
> relJson = new RelJson(jsonBuilder);
> }
> {code}
--
This message was sent by Atlassian Jira
(v8.20.1#820001)