Changes between Initial Version and Version 1 of Ticket #36627, comment 1
- Timestamp:
- Sep 26, 2025, 8:58:03 PM (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #36627, comment 1
initial v1 3 3 The hard part here will likely not be to write the `WithoutOverlaps` expression part but to adjust `UniqueConstraint.validate` to honor it without coupling `contrib.postgres` and core. 4 4 5 I'll note that `WITHOUT OVERLAPS` is really just SQL sugar over exclusion constraints which we already support via `ExclusionConstraint` so I'm not entirely convinced it's worth adding given the `UniqueConstraint.validate` complexity it would incur. 5 I'll note that `WITHOUT OVERLAPS` is really just SQL sugar over exclusion constraints which we already support via `ExclusionConstraint` so I'm not entirely convinced it's worth adding given the `UniqueConstraint.validate` complexity it would incur. If it was supported by more than one supported engine then it could be worthy but AFAIK it's not the case.