(name: str, schema: Optional[str])
| 174 | |
| 175 | |
| 176 | def _get_table_key(name: str, schema: Optional[str]) -> str: |
| 177 | if schema is None: |
| 178 | return name |
| 179 | else: |
| 180 | return schema + "." + name |
| 181 | |
| 182 | |
| 183 | # this should really be in sql/util.py but we'd have to |
no outgoing calls
no test coverage detected