(name: str, schema: Optional[str])
| 185 | |
| 186 | |
| 187 | def _get_table_key(name: str, schema: Optional[str]) -> str: |
| 188 | if schema is None: |
| 189 | return name |
| 190 | else: |
| 191 | return schema + "." + name |
| 192 | |
| 193 | |
| 194 | # this should really be in sql/util.py but we'd have to |
no outgoing calls
no test coverage detected