(self)
| 1082 | assert expr in visitors.iterate(expr, {}) |
| 1083 | |
| 1084 | def test_within_group(self): |
| 1085 | expr = func.row_number().within_group(t1.c.col1) |
| 1086 | expr2 = CloningVisitor().traverse(expr) |
| 1087 | assert str(expr) == str(expr2) |
| 1088 | |
| 1089 | assert expr in visitors.iterate(expr, {}) |
| 1090 | |
| 1091 | def test_funcfilter(self): |
| 1092 | expr = func.count(1).filter(t1.c.col1 > 1) |
nothing calls this directly
no test coverage detected