(self, text)
| 2757 | return text |
| 2758 | |
| 2759 | def escape_literal_column(self, text): |
| 2760 | if self.preparer._double_percents: |
| 2761 | text = text.replace("%", "%%") |
| 2762 | return text |
| 2763 | |
| 2764 | def visit_textclause(self, textclause, add_to_result_map=None, **kw): |
| 2765 | if self._collect_params: |
no test coverage detected