Member Junction
    Preparing search index...

    Interface MJPostgresTranspilerOptions

    interface MJPostgresTranspilerOptions {
        extraBitColumns?: string[];
        pythonPath?: string;
        timeoutMs?: number;
    }
    Index

    Properties

    extraBitColumns?: string[]

    BIT/BOOLEAN columns declared OUTSIDE the SQL being transpiled (cross-file registry, e.g. collected from the baselines), so seed INSERTs targeting those tables get their 1/0 values coerced to TRUE/FALSE.

    pythonPath?: string

    Python interpreter to run the dialect with. Resolution order: this option → MJ_SQLGLOT_PYTHON env var → python3 on PATH. The interpreter must have sqlglot installed (pip install sqlglot).

    timeoutMs?: number

    Per-invocation timeout in ms (default 120000 — baselines are large).