Skip to content

fastflowtransform.executors.query_stats

QueryStats dataclass

Normalised query metrics.

Engines can fill whichever fields they support; unsupported ones can simply stay None.

Source code in src/fastflowtransform/executors/query_stats.py
10
11
12
13
14
15
16
17
18
19
20
21
@dataclass
class QueryStats:
    """
    Normalised query metrics.

    Engines can fill whichever fields they support; unsupported ones
    can simply stay None.
    """

    bytes_processed: int | None = None
    rows: int | None = None
    duration_ms: int | None = None