(self)
| 2772 | ) |
| 2773 | |
| 2774 | def test_prefixes(self): |
| 2775 | s = t1.select() |
| 2776 | self.assert_compile( |
| 2777 | s, "SELECT table1.col1, table1.col2, table1.col3 FROM table1" |
| 2778 | ) |
| 2779 | select_copy = s.prefix_with("FOOBER") |
| 2780 | self.assert_compile( |
| 2781 | select_copy, |
| 2782 | "SELECT FOOBER table1.col1, table1.col2, " |
| 2783 | "table1.col3 FROM table1", |
| 2784 | ) |
| 2785 | self.assert_compile( |
| 2786 | s, "SELECT table1.col1, table1.col2, table1.col3 FROM table1" |
| 2787 | ) |
| 2788 | |
| 2789 | def test_execution_options(self): |
| 2790 | s = select().execution_options(foo="bar") |
nothing calls this directly
no test coverage detected