summaryrefslogtreecommitdiff
path: root/tests/backends
diff options
context:
space:
mode:
authorSimon Charette <charette.s@gmail.com>2024-12-09 18:38:18 -0500
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2025-02-01 18:43:10 +0100
commit4608d34b346c28d5d227363c881d3279378f40b3 (patch)
treeb769a1916458f322d5f8de7d1358d54e2a913d3d /tests/backends
parent0d131c158234df544532830b7752fe43fcf4bb39 (diff)
Fixed #36088 -- Avoided unnecessary DEFAULT usage on bulk_create().
When all values of a field with a db_default are DatabaseDefault, which is the case most of the time, there is no point in specifying explicit DEFAULT for all INSERT VALUES as that's what the database will do anyway if not specified. In the case of PostgreSQL doing so can even be harmful as it prevents the usage of the UNNEST strategy and in the case of Oracle, which doesn't support the usage of the DEFAULT keyword, it unnecessarily requires providing literal db defaults. Thanks Lily Foote for the review.
Diffstat (limited to 'tests/backends')
-rw-r--r--tests/backends/models.py2
-rw-r--r--tests/backends/postgresql/test_compilation.py6
2 files changed, 7 insertions, 1 deletions
diff --git a/tests/backends/models.py b/tests/backends/models.py
index 1ed108c2b8..afb6ebe303 100644
--- a/tests/backends/models.py
+++ b/tests/backends/models.py
@@ -5,7 +5,7 @@ from django.db import models
class Square(models.Model):
root = models.IntegerField()
- square = models.PositiveIntegerField()
+ square = models.PositiveIntegerField(db_default=9)
def __str__(self):
return "%s ** 2 == %s" % (self.root, self.square)
diff --git a/tests/backends/postgresql/test_compilation.py b/tests/backends/postgresql/test_compilation.py
index 67fe893e35..5a86a427ff 100644
--- a/tests/backends/postgresql/test_compilation.py
+++ b/tests/backends/postgresql/test_compilation.py
@@ -27,3 +27,9 @@ class BulkCreateUnnestTests(TestCase):
[Square(root=2, square=4), Square(root=3, square=9)]
)
self.assertIn("UNNEST", ctx[0]["sql"])
+
+ def test_unnest_eligible_db_default(self):
+ with self.assertNumQueries(1) as ctx:
+ squares = Square.objects.bulk_create([Square(root=3), Square(root=3)])
+ self.assertIn("UNNEST", ctx[0]["sql"])
+ self.assertEqual([square.square for square in squares], [9, 9])