Get the fully qualified table name.
(self, table: str)
| 53 | ) |
| 54 | |
| 55 | def _get_table_name(self, table: str) -> str: |
| 56 | """Get the fully qualified table name.""" |
| 57 | return f'"{self.project_name}"."{table}"' |
| 58 | |
| 59 | def _get_entity_table_for_store(self, store_type: StoreType) -> str: |
| 60 | """Get the appropriate table name for the store type.""" |
no outgoing calls
no test coverage detected