diff options
| author | Vajrasky Kok <sky.kok@speaklikeaking.com> | 2013-11-24 21:12:22 +0800 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-02-06 05:16:40 -0500 |
| commit | d3cf6cfacfb828faad4f4f97c904e259304649b3 (patch) | |
| tree | ae44bc63cc45a144edbec26bb5590b8225e70233 /tests/backends | |
| parent | b22d6c47a7e4c7ab26a8b7b033d11fa6743aae86 (diff) | |
Fixed #17713 -- Renamed BaseDatabaseFeatures.allows_primary_key_0 to allows_auto_pk_0.
MySQL does allow primary key with value 0. It only forbids autoincrement
primary key with value 0.
Thanks Claude Paroz for the report.
Diffstat (limited to 'tests/backends')
| -rw-r--r-- | tests/backends/tests.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/backends/tests.py b/tests/backends/tests.py index 9548f60a77..d5116898ec 100644 --- a/tests/backends/tests.py +++ b/tests/backends/tests.py @@ -934,10 +934,9 @@ class ThreadTests(TestCase): class MySQLPKZeroTests(TestCase): """ Zero as id for AutoField should raise exception in MySQL, because MySQL - does not allow zero for automatic primary key. + does not allow zero for autoincrement primary key. """ - - @skipIfDBFeature('allows_primary_key_0') + @skipIfDBFeature('allows_auto_pk_0') def test_zero_as_autoval(self): with self.assertRaises(ValueError): models.Square.objects.create(id=0, root=0, square=1) |
