interface SupportableDecimalNumberOptions {
    NaN: boolean;
    infinity: boolean;
    unsigned: boolean;
    zerofill: boolean;
}

Hierarchy (view full)

Properties

NaN: boolean

Whether NaN can be inserted in a column that uses this DataType.

infinity: boolean

Whether Infinity/-Infinity can be inserted in a column that uses this DataType.

unsigned: boolean

Whether this dialect supports the unsigned option natively

zerofill: boolean