interface SupportableFloatOptions {
    infinity: boolean;
    NaN: boolean;
    scaleAndPrecision: boolean;
    unsigned: boolean;
    zerofill: boolean;
}

Hierarchy (View Summary)

Properties

infinity: boolean

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

NaN: boolean

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

scaleAndPrecision: boolean

Whether scale & precision can be specified as parameters

unsigned: boolean

Whether this dialect supports the unsigned option natively

zerofill: boolean