(self, text)
| 2685 | ) |
| 2686 | |
| 2687 | def post_process_text(self, text): |
| 2688 | if self.preparer._double_percents: |
| 2689 | text = text.replace("%", "%%") |
| 2690 | return text |
| 2691 | |
| 2692 | def escape_literal_column(self, text): |
| 2693 | if self.preparer._double_percents: |
no test coverage detected