()
| 128 | |
| 129 | |
| 130 | def test_grouping_identifier_name_wildcard(): |
| 131 | p = sqlparse.parse('a.*')[0] |
| 132 | t = p.tokens[0] |
| 133 | assert t.get_name() == '*' |
| 134 | assert t.is_wildcard() is True |
| 135 | |
| 136 | |
| 137 | def test_grouping_identifier_invalid(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…