(self, text)
| 2690 | return text |
| 2691 | |
| 2692 | def escape_literal_column(self, text): |
| 2693 | if self.preparer._double_percents: |
| 2694 | text = text.replace("%", "%%") |
| 2695 | return text |
| 2696 | |
| 2697 | def visit_textclause(self, textclause, add_to_result_map=None, **kw): |
| 2698 | def do_bindparam(m): |
no test coverage detected