You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@calcite.apache.org by "Chunwei Lei (Jira)" <ji...@apache.org> on 2021/11/11 02:28:00 UTC

[jira] [Created] (CALCITE-4884) Provide a new constructor for RelJsonWriter to allow customized JsonBuilder

Chunwei Lei created CALCITE-4884:
------------------------------------

             Summary: 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


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)