(self)
| 65 | ) |
| 66 | |
| 67 | def test_column_interpolation(self): |
| 68 | stmt = tstring(t"SELECT {table1.c.myid}, {table1.c.name} FROM mytable") |
| 69 | self.assert_compile( |
| 70 | stmt, "SELECT mytable.myid, mytable.name FROM mytable" |
| 71 | ) |
| 72 | |
| 73 | def test_column_interpolation_labeled(self): |
| 74 | # Labels are not supported inside tstring as they're ambiguous |
nothing calls this directly
no test coverage detected