(self, node)
| 571 | return self.quote_name(name) |
| 572 | |
| 573 | def compile(self, node): |
| 574 | vendor_impl = getattr(node, "as_" + self.connection.vendor, None) |
| 575 | if vendor_impl: |
| 576 | sql, params = vendor_impl(self, self.connection) |
| 577 | else: |
| 578 | sql, params = node.as_sql(self, self.connection) |
| 579 | return sql, params |
| 580 | |
| 581 | def get_combinator_sql(self, combinator, all): |
| 582 | features = self.connection.features |
no test coverage detected