(self)
| 133 | ) |
| 134 | |
| 135 | def test_use_labels(self): |
| 136 | self.assert_compile( |
| 137 | select(func.foo()).set_label_style(LABEL_STYLE_TABLENAME_PLUS_COL), |
| 138 | "SELECT foo() AS foo_1", |
| 139 | ) |
| 140 | |
| 141 | def test_use_labels_function_element(self): |
| 142 | class max_(FunctionElement): |
nothing calls this directly
no test coverage detected