(self, src_table)
| 226 | ) |
| 227 | |
| 228 | def test_or_replace(self, src_table): |
| 229 | src = src_table |
| 230 | stmt = CreateView( |
| 231 | select(src.c.id, src.c.name), |
| 232 | "dst", |
| 233 | or_replace=True, |
| 234 | ) |
| 235 | |
| 236 | self.assert_compile( |
| 237 | stmt, |
| 238 | "CREATE OR REPLACE VIEW dst AS SELECT src.id, src.name FROM src", |
| 239 | ) |
| 240 | |
| 241 | def test_join_with_binds_rendered_inline(self, src_two_tables): |
| 242 | a, b = src_two_tables |
nothing calls this directly
no test coverage detected