• A MultiPolygon is a collection of non-overlapping, non-adjacent Polygons.

    Polygons in the collection may touch only at a finite number of points.

    Type Parameters

    • TName extends string

    Parameters

    Returns PgCustomColumnBuilder<{
        columnType: "PgCustomColumn";
        data: MultiPolygon;
        dataType: "custom";
        driverParam: string;
        enumValues: undefined;
        name: TName;
    }>

    Example

    `MULTIPOLYGON (((1 5, 5 5, 5 1, 1 1, 1 5)), ((6 5, 9 1, 6 1, 6 5)))`
    

    Link

    https://postgis.net/docs/using_postgis_dbmanagement.html#MultiPolygon

Generated using TypeDoc