Interface ParsedColumnNullable

Tuple, Array or Map itself cannot be Nullable

interface ParsedColumnNullable {
    sourceType: string;
    type: "Nullable";
    value: ParsedColumnSimple | ParsedColumnEnum | ParsedColumnFixedString | ParsedColumnDecimal | ParsedColumnDateTime | ParsedColumnDateTime64;
}

Properties

Properties

sourceType: string
type: "Nullable"