(self, dbname:str, connectionsettings:Connection)
| 11 | class PostgreSQL(DataBase): |
| 12 | |
| 13 | def __init__(self, dbname:str, connectionsettings:Connection): |
| 14 | super().__init__(dbname=dbname, connectionsettings=connectionsettings) |
| 15 | self._tables_schema = "information_schema.tables" |
| 16 | self._queries = { |
| 17 | "databases":"SELECT datname FROM pg_catalog.pg_database" |
| 18 | } |
| 19 | |
| 20 | @property |
| 21 | def principal_database(self)->str: |
nothing calls this directly
no outgoing calls
no test coverage detected