()
| 35 | |
| 36 | @staticmethod |
| 37 | def _relevant_impls(): |
| 38 | return ( |
| 39 | text(class="st">"select 1 + 2"), |
| 40 | tstring(Template(class="st">"select 1 + 2")), |
| 41 | text(class="st">"select 42 as q").columns(column(class="st">"q", Integer)), |
| 42 | func.max(42), |
| 43 | select(1, 2).union(select(3, 4)), |
| 44 | select(1, 2), |
| 45 | ) |
| 46 | |
| 47 | def test_params_impl(self): |
| 48 | exclude = (dml.UpdateBase,) |