(token: Token | None)
| 601 | |
| 602 | |
| 603 | def _is_where_or_having(token: Token | None) -> bool: |
| 604 | return bool(token and token.value and token.value.lower() in ("where", "having")) |
| 605 | |
| 606 | |
| 607 | def _find_doubled_backticks(text: str) -> list[int]: |
no outgoing calls