nodejs-polars
    Preparing search index...

    Interface ScanParquetOptions

    Options for scanParquet

    interface ScanParquetOptions {
        allowMissingColumns?: boolean;
        cache?: boolean;
        castOptions?: ScanCastOptions;
        cloudOptions?: Record<string, string | number | boolean>;
        extraColumns?: "raise" | "ignore";
        glob?: boolean;
        hiddenFilePrefix?: string | string[];
        hivePartitioning?: boolean;
        hiveSchema?: unknown;
        includeFilePaths?: string;
        lowMemory?: boolean;
        missingColumns?: "raise" | "insert";
        nRows?: number;
        parallel?: "columns" | "auto" | "row_groups" | "prefiltered" | "none";
        rechunk?: boolean;
        rowIndexName?: string;
        rowIndexOffset?: number;
        schema?: unknown;
        tryParseHiveDates?: boolean;
        useStatistics?: boolean;
    }
    Index
    allowMissingColumns?: boolean

    Use missingColumns instead.

    cache?: boolean
    castOptions?: ScanCastOptions
    cloudOptions?: Record<string, string | number | boolean>
    extraColumns?: "raise" | "ignore"
    glob?: boolean
    hiddenFilePrefix?: string | string[]
    hivePartitioning?: boolean
    hiveSchema?: unknown
    includeFilePaths?: string
    lowMemory?: boolean
    missingColumns?: "raise" | "insert"
    nRows?: number
    parallel?: "columns" | "auto" | "row_groups" | "prefiltered" | "none"
    rechunk?: boolean
    rowIndexName?: string
    rowIndexOffset?: number
    schema?: unknown
    tryParseHiveDates?: boolean
    useStatistics?: boolean