LuciferYang opened a new pull request, #40332:
URL: https://github.com/apache/spark/pull/40332

   ### What changes were proposed in this pull request?
   This pr add a new proto message 
   
   ```
   message Parse {
     // (Required) Input relation to Parse. The input is expected to have 
single text column.
     Relation input = 1;
     // (Required) The expected format of the text.
     ParseFormat format = 2;
   
     // Options for the csv/json parser. The map key is case insensitive.
     map<string, string> options = 3;
     enum ParseFormat {
       PARSE_FORMAT_UNSPECIFIED = 0;
       PARSE_FORMAT_CSV = 1;
       PARSE_FORMAT_JSON = 2;
     }
   }
   ```
   
   and implement CSV/JSON parsing functions for Scala client.
   
   ### Why are the changes needed?
   Add Spark connect jvm client api coverage.
   
   
   
   
   ### Does this PR introduce _any_ user-facing change?
   No
   
   
   ### How was this patch tested?
   Pass Github Actions


-- 
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]

Reply via email to