Skip to content

Commit

Permalink
remove redundant comment
Browse files Browse the repository at this point in the history
Signed-off-by: YANGDB <[email protected]>
  • Loading branch information
YANG-DB committed Oct 26, 2023
1 parent b38062d commit 29dd64b
Showing 1 changed file with 3 additions and 35 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,41 +36,9 @@
import static java.util.stream.StreamSupport.stream;
import static org.opensearch.sql.data.model.ExprValueUtils.fromObjectValue;

/** Default implementation of SparkSqlFunctionResponseHandle.
* - expecting the following schema -
* {
* "data": {
* "applicationId": "some_spark_application_id",
* "schema": [
* {
* "name": "column1",
* "type": "string"
* },
* {
* "name": "column2",
* "type": "integer"
* },
* {
* "name": "column3",
* "type": "boolean"
* }
* // ... more schema definitions
* ],
* "result": [
* {
* "column1": "value1",
* "column2": 123,
* "column3": true
* },
* {
* "column1": "value2",
* "column2": 456,
* "column3": false
* },
* // ... more rows
* ]
* }
* }
/**
* Default implementation of SparkSqlFunctionResponseHandle.
*
*/
public class DefaultSparkSqlFunctionResponseHandle implements SparkSqlFunctionResponseHandle {
public static final String DATA = "data";
Expand Down

0 comments on commit 29dd64b

Please sign in to comment.