Get the properly shortened and uppercased identifier as returned by quote_name() but without the quotes.
(self, name)
| 184 | ) |
| 185 | |
| 186 | def normalize_name(self, name): |
| 187 | """ |
| 188 | Get the properly shortened and uppercased identifier as returned by |
| 189 | quote_name() but without the quotes. |
| 190 | """ |
| 191 | nn = self.quote_name(name) |
| 192 | if nn[0] == '"' and nn[-1] == '"': |
| 193 | nn = nn[1:-1] |
| 194 | return nn |
| 195 | |
| 196 | def _generate_temp_name(self, for_name): |
| 197 | """Generate temporary names for workarounds that need temp columns.""" |
no test coverage detected