How exactly does inclusion in postgresql ranges work?
I am reading the documentation for ranges here and there it states: -- includes only the single point 4 SELECT '[4,4]'::int4range; Okay but when I execute this, I get SELECT '[4,4]'::int4range; int4range ----------- [4,5) (1 row) Why is 5 included…