Opened 3 years ago
Last modified 3 years ago
#33665 closed New feature
Add support for Postgres multirange — at Initial Version
Reported by: | Tom Carrick | Owned by: | |
---|---|---|---|
Component: | contrib.postgres | Version: | dev |
Severity: | Normal | Keywords: | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
Postgres 14 adds various multirange data types corresponding to the existing range types: https://www.postgresql.org/docs/14/rangetypes.html
e.g.:
select nummultirange(numrange(null, 2), numrange(4, 5), numrange(8, 9));
Gives "{(,2),[4,5),[8,9)}"
.
I would like to have some support for these in Django.
Note:
See TracTickets
for help on using tickets.