Given the following code, is there a way to turn off Postgres converting the lower bound to inclusive, that is going from (date to [date+1?
CREATE TABLE test (range daterange NOT NULL );
INSERT INTO test (range) VALUES ('(2001-01-01,infinity)');
SELECT * FROM test -- returns [2001-01-02,infinity)
The answer is in the docs Ranges:
So the answer is no.