(self, name)
| 171 | return sql |
| 172 | |
| 173 | def quote_name(self, name): |
| 174 | if name.startswith('"') and name.endswith('"'): |
| 175 | return name # Quoting once is enough. |
| 176 | return '"%s"' % name |
| 177 | |
| 178 | def no_limit_value(self): |
| 179 | return -1 |
no outgoing calls
no test coverage detected