Determine whether this field should be quoted.
(self, field=None, raw_field=None, only=None)
| 94 | """Optional method for strategy-wide optimizations.""" |
| 95 | |
| 96 | def quoted(self, field=None, raw_field=None, only=None): |
| 97 | """Determine whether this field should be quoted.""" |
| 98 | raise NotImplementedError( |
| 99 | 'quoted must be implemented by a subclass') |
| 100 | |
| 101 | @property |
| 102 | def specialchars(self): |