MobilityDB 1.1
|
Constructor functions for set and span types. More...
Functions | |
Set * | set_make (const Datum *values, int count, meosType basetype, bool ordered) |
Construct a set from an array of values. More... | |
Set * | set_make_exp (const Datum *values, int count, int maxcount, meosType basetype, bool ordered) |
Construct a set from an array of values. More... | |
Set * | set_make_free (Datum *values, int count, meosType basetype, bool ordered) |
Construct a set from the array of values and free the array after the creation. More... | |
Span * | span_make (Datum lower, Datum upper, bool lower_inc, bool upper_inc, meosType basetype) |
Construct a span from the bounds. More... | |
void | span_set (Datum lower, Datum upper, bool lower_inc, bool upper_inc, meosType basetype, Span *s) |
Set a span from the bounds. More... | |
Constructor functions for set and span types.