1 | Index: django/db/models/base.py
|
---|
2 | ===================================================================
|
---|
3 | --- django/db/models/base.py (revision 6137)
|
---|
4 | +++ django/db/models/base.py (working copy)
|
---|
5 | @@ -236,7 +236,7 @@
|
---|
6 | db_values = [f.get_db_prep_save(raw and getattr(self, f.attname) or f.pre_save(self, True)) for f in self._meta.fields if not isinstance(f, AutoField)]
|
---|
7 | # If the PK has been manually set, respect that.
|
---|
8 | if pk_set:
|
---|
9 | - field_names += [f.column for f in self._meta.fields if isinstance(f, AutoField)]
|
---|
10 | + field_names += [backend.quote_name(f.column) for f in self._meta.fields if isinstance(f, AutoField)]
|
---|
11 | db_values += [f.get_db_prep_save(raw and getattr(self, f.attname) or f.pre_save(self, True)) for f in self._meta.fields if isinstance(f, AutoField)]
|
---|
12 | placeholders = ['%s'] * len(field_names)
|
---|
13 | if self._meta.order_with_respect_to:
|
---|