MobilityDB
1.0
|
◆ datum_eq2()
Returns true if the first value is greater than or equal to the second one This function is currently not used bool datum_ge(Datum l, Datum r, Oid type) { return datum_eq2(l, r, type, type) || datum_lt2(r, l, type, type); }. Returns true if the two values are equal even if their type is not the same (base type dispatch function) |