(query, start=None)
| 19 | |
| 20 | |
| 21 | def find_unmatching_froms(query, start=None): |
| 22 | compiled = query.compile(linting=sql.COLLECT_CARTESIAN_PRODUCTS) |
| 23 | |
| 24 | return compiled.from_linter.lint(start) |
| 25 | |
| 26 | |
| 27 | class TestFindUnmatchingFroms(fixtures.TablesTest): |
no test coverage detected