1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

[1.9.x] Fixed #22705 -- Fixed QuerySet.bulk_create() on models without any fields on Oracle.

Fixed on other backends by 134ca4d438.

Thanks Mariusz Felisiak for the solution.

Backport of 7a5b7e35bf from master
This commit is contained in:
Tim Graham
2015-10-08 21:14:24 -04:00
parent f717cb2ab4
commit 7cd299584d
3 changed files with 13 additions and 2 deletions

View File

@@ -267,6 +267,9 @@ WHEN (new.%(col_name)s IS NULL)
def max_name_length(self):
return 30
def pk_default_value(self):
return "NULL"
def prep_for_iexact_query(self, x):
return x