(self)
| 147 | ) |
| 148 | |
| 149 | def test_use_labels(self): |
| 150 | self.assert_compile( |
| 151 | select(func.foo()).set_label_style(LABEL_STYLE_TABLENAME_PLUS_COL), |
| 152 | "SELECT foo() AS foo_1", |
| 153 | ) |
| 154 | |
| 155 | def test_use_labels_function_element(self): |
| 156 | class max_(FunctionElement): |
nothing calls this directly
no test coverage detected