Interface JSONInsertOptions

interface JSONInsertOptions {
    columns?: {
        [key: string]: arrow.DataType;
    };
    columnsFlat?: SQLField[];
    create?: boolean;
    name: string;
    schema?: string;
    shape?: JSONTableShape;
}

Properties

columns?: {
    [key: string]: arrow.DataType;
}

Type declaration

  • [key: string]: arrow.DataType
columnsFlat?: SQLField[]
create?: boolean
name: string
schema?: string

Generated using TypeDoc