PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ geom3d_brin_inclusion_add_value()

Datum geom3d_brin_inclusion_add_value ( PG_FUNCTION_ARGS  )

Definition at line 37 of file brin_nd.c.

References geom4d_brin_inclusion_add_value(), gidx_brin_inclusion_add_value(), and PG_FUNCTION_INFO_V1().

Referenced by geog_brin_inclusion_add_value().

38 {
39  BrinDesc *bdesc = (BrinDesc *) PG_GETARG_POINTER(0);
40  BrinValues *column = (BrinValues *) PG_GETARG_POINTER(1);
41  Datum newval = PG_GETARG_DATUM(2);
42  bool isnull = PG_GETARG_BOOL(3);
43 
44  PG_RETURN_DATUM(gidx_brin_inclusion_add_value(bdesc, column, newval, isnull,
45  3));
46 }
Datum gidx_brin_inclusion_add_value(BrinDesc *bdesc, BrinValues *column, Datum newval, bool isnull, int max_dims)
Definition: brin_nd.c:62
Here is the call graph for this function:
Here is the caller graph for this function: