Interface DuckDbAggregateOutputFieldExperimental

Effective fields emitted by an aggregate SELECT, in SQL projection order.

interface DuckDbAggregateOutputField {
    name: string;
    nullable?: boolean;
    source: "metric" | "group";
    type: string;
}

Hierarchy (view full)

Properties

name: string
nullable?: boolean
source: "metric" | "group"
type: string