diff options
| author | Simon Charette <charette.s@gmail.com> | 2024-12-07 10:07:55 -0500 |
|---|---|---|
| committer | Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> | 2024-12-09 09:46:06 +0100 |
| commit | b0b30247204aea8096b3c5456d71c2df9bc4f4ae (patch) | |
| tree | 280cedb062e4c36ae8272efa72a428887276feed /django/db/backends/postgresql/operations.py | |
| parent | a0db341c3c1445b22655011842542e47fb144f41 (diff) | |
Refs #35982 -- Made BaseDatabaseOperations.adapt_decimalfield_value() a no-op.
Diffstat (limited to 'django/db/backends/postgresql/operations.py')
| -rw-r--r-- | django/db/backends/postgresql/operations.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/django/db/backends/postgresql/operations.py b/django/db/backends/postgresql/operations.py index d89f81bf7e..8a0ca36a29 100644 --- a/django/db/backends/postgresql/operations.py +++ b/django/db/backends/postgresql/operations.py @@ -346,9 +346,6 @@ class DatabaseOperations(BaseDatabaseOperations): def adapt_timefield_value(self, value): return value - def adapt_decimalfield_value(self, value, max_digits=None, decimal_places=None): - return value - def adapt_ipaddressfield_value(self, value): if value: return Inet(value) |
