Databricks SDK for JavaScript
    Preparing search index...

    The result manifest provides schema and metadata for the result set.

    interface ResultManifest {
        chunks?: ChunkInfo[];
        format?: Format;
        schema?: Schema;
        totalByteCount?: bigint;
        totalChunkCount?: number;
        totalRowCount?: bigint;
        truncated?: boolean;
    }
    Index

    Properties

    chunks?: ChunkInfo[]

    Array of result set chunk metadata.

    format?: Format
    schema?: Schema
    totalByteCount?: bigint

    The total number of bytes in the result set. This field is not available when using INLINE disposition.

    totalChunkCount?: number

    The total number of chunks that the result set has been divided into.

    totalRowCount?: bigint

    The total number of rows in the result set.

    truncated?: boolean

    Indicates whether the result is truncated due to row_limit or byte_limit.