| Parameter | Type | Description | Example |
|---|---|---|---|
| object | The information about SparkBatchSQLStatement. | ||
| ResultUri | string | The Object Storage Service (OSS) location where the execution results of the SQL statement are stored. If you do not specify a storage location, null is returned. | oss://yourbucket/result.json |
| EndTime | long | The execution end timestamp of the SQL statement. | 1723521767000 |
| AppId | string | The ID of the Spark job that executes the SQL statement. | s20240122jsdx**** |
| StatementId | string | The ID of the SQL statement. | sq1723521767****-0001 |
| State | string | The execution status of the SQL statement. Valid values:
| RUNNING |
| StartTime | long | The execution start timestamp of the SQL statement. | 1723521767000 |
| Error | string | The error message for the SQL statement execution. | table is not found |
| Code | string | The text of the SQL statement. | SELECT 100 |
| Result | string | The execution result of the SQL statement. The content is in the response format of the | +---+-----+ |age| name| +---+-----+ | 14| Tom| | 23|Alice| +---+-----+ |