Extracts the lower bound of the range (NULL if the
- range is empty or the lower bound is infinite).
+ range is empty or has no lower bound).
lower(numrange(1.1,2.2))
Extracts the upper bound of the range (NULL if the
- range is empty or the upper bound is infinite).
+ range is empty or has no upper bound).
upper(numrange(1.1,2.2))
boolean
- Is the range's lower bound infinite?
+ Does the range have no lower bound? (A lower bound of
+ -Infinity returns false.)
lower_inf('(,)'::daterange)
boolean
- Is the range's upper bound infinite?
+ Does the range have no upper bound? (An upper bound of
+ Infinity returns false.)
upper_inf('(,)'::daterange)
Extracts the lower bound of the multirange (NULL if the
- multirange is empty or the lower bound is infinite).
+ multirange is empty has no lower bound).
lower('{[1.1,2.2)}'::nummultirange)
Extracts the upper bound of the multirange (NULL if the
- multirange is empty or the upper bound is infinite).
+ multirange is empty or has no upper bound).
upper('{[1.1,2.2)}'::nummultirange)
boolean
- Is the multirange's lower bound infinite?
+ Does the multirange have no lower bound? (A lower bound of
+ -Infinity returns false.)
lower_inf('{(,)}'::datemultirange)
boolean
- Is the multirange's upper bound infinite?
+ Does the multirange have no upper bound? (An upper bound of
+ Infinity returns false.)
upper_inf('{(,)}'::datemultirange)