(self, text)
| 2752 | ) |
| 2753 | |
| 2754 | def post_process_text(self, text): |
| 2755 | if self.preparer._double_percents: |
| 2756 | text = text.replace("%", "%%") |
| 2757 | return text |
| 2758 | |
| 2759 | def escape_literal_column(self, text): |
| 2760 | if self.preparer._double_percents: |
no test coverage detected