Class DdsqlTabularQueryResponseAttributes

Attributes of a DDSQL tabular query response. query_id is set when state is running; columns is set when state is completed.

Hierarchy

  • DdsqlTabularQueryResponseAttributes

Constructors

Properties

additionalProperties?: {
    [key: string]: any;
}

A container for additional, undeclared properties. This is a holder for any undeclared properties as specified with the 'additionalProperties' keyword in the OAS document.

Type declaration

  • [key: string]: any

Column-major result set. Each element carries one column's name, type, and values, with one value per row of the result. Set when state is completed.

queryId?: string

Opaque token to pass to the fetch endpoint to poll for results. Set when state is running and absent when state is completed.

Lifecycle state of a DDSQL tabular query response. running means the query is still executing and the client should poll the fetch endpoint with the returned query_id. completed means the result set is inlined in columns and no further polling is required.

warnings?: string[]

Non-fatal messages emitted by the query engine while serving this response.

Generated using TypeDoc