PostGIS 3.7.0dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ geom4d_brin_inclusion_add_value()

Datum geom4d_brin_inclusion_add_value ( PG_FUNCTION_ARGS  )

Definition at line 54 of file brin_nd.c.

55{
56 BrinDesc *bdesc = (BrinDesc *) PG_GETARG_POINTER(0);
57 BrinValues *column = (BrinValues *) PG_GETARG_POINTER(1);
58 Datum newval = PG_GETARG_DATUM(2);
59 bool isnull = PG_GETARG_BOOL(3);
60
61 PG_RETURN_DATUM(gidx_brin_inclusion_add_value(bdesc, column, newval, isnull,
62 4));
63}
static Datum gidx_brin_inclusion_add_value(BrinDesc *bdesc, BrinValues *column, Datum newval, bool isnull, int max_dims)

References gidx_brin_inclusion_add_value().

Here is the call graph for this function: