Databricks SDK for JavaScript
    Preparing search index...
    interface ColumnInfo {
        name?: string;
        position?: number;
        typeIntervalType?: string;
        typeName?: ColumnTypeName;
        typePrecision?: number;
        typeScale?: number;
        typeText?: string;
    }
    Index

    Properties

    name?: string

    The name of the column.

    position?: number

    The ordinal position of the column (starting at position 0).

    typeIntervalType?: string

    The format of the interval type.

    typeName?: ColumnTypeName

    The name of the base data type. This doesn't include details for complex types such as STRUCT, MAP or ARRAY.

    typePrecision?: number

    Specifies the number of digits in a number. This applies to the DECIMAL type.

    typeScale?: number

    Specifies the number of digits to the right of the decimal point in a number. This applies to the DECIMAL type.

    typeText?: string

    The full SQL type specification.