Databricks SDK for JavaScript
    Preparing search index...
    interface ColumnInfo {
        comment?: string;
        mask?: ColumnMask;
        name?: string;
        nullable?: boolean;
        partitionIndex?: number;
        position?: number;
        typeIntervalType?: string;
        typeJson?: string;
        typeName?: ColumnTypeName;
        typePrecision?: number;
        typeScale?: number;
        typeText?: string;
    }
    Index

    Properties

    comment?: string

    User-provided free-form text description.

    mask?: ColumnMask
    name?: string

    Name of Column.

    nullable?: boolean

    Whether field may be Null (default: true).

    partitionIndex?: number

    Partition index for column.

    position?: number

    Ordinal position of column (starting at position 0).

    typeIntervalType?: string

    Format of IntervalType.

    typeJson?: string

    Full data type specification, JSON-serialized.

    typeName?: ColumnTypeName
    typePrecision?: number

    Digits of precision; required for DecimalTypes.

    typeScale?: number

    Digits to right of decimal; Required for DecimalTypes.

    typeText?: string

    Full data type specification as SQL/catalogString text.