(self)
| 733 | ) |
| 734 | |
| 735 | def test_select_from_clauselist(self): |
| 736 | self.assert_compile( |
| 737 | select(ClauseList(column("a"), column("b"))).select_from( |
| 738 | text("sometable") |
| 739 | ), |
| 740 | "SELECT a, b FROM sometable", |
| 741 | ) |
| 742 | |
| 743 | def test_use_labels(self): |
| 744 | self.assert_compile( |
nothing calls this directly
no test coverage detected