diff options
| author | Tim Graham <timograham@gmail.com> | 2025-08-19 15:08:43 -0400 |
|---|---|---|
| committer | Jacob Walls <jacobtylerwalls@gmail.com> | 2025-09-05 10:43:10 -0400 |
| commit | 2a636118dacdcda074c99ebd50311d64a8cca367 (patch) | |
| tree | f5b11c60f9fd598429d6ab60b35515a6c6d82256 /tests/postgres_tests/test_constraints.py | |
| parent | 0ddbe12ea99a2dc1b757dc2015ba8bb6bfd9d653 (diff) | |
Fixed #36564 -- Changed DEFAULT_AUTO_FIELD from AutoField to BigAutoField.
Diffstat (limited to 'tests/postgres_tests/test_constraints.py')
| -rw-r--r-- | tests/postgres_tests/test_constraints.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/postgres_tests/test_constraints.py b/tests/postgres_tests/test_constraints.py index f107bffcfe..bcc2b5f97d 100644 --- a/tests/postgres_tests/test_constraints.py +++ b/tests/postgres_tests/test_constraints.py @@ -821,7 +821,7 @@ class ExclusionConstraintTests(PostgreSQLTestCase): OpClass(TsTzRange("start", "end", RangeBoundary()), "range_ops"), RangeOperators.OVERLAPS, ), - (OpClass("room", "gist_int4_ops"), RangeOperators.EQUAL), + (OpClass("room", "gist_int8_ops"), RangeOperators.EQUAL), ], condition=Q(cancelled=False), ) |
