Files
DB-GPT/pilot/connections/rdbms/postgres.py
2023-06-14 10:17:53 +08:00

13 lines
348 B
Python

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from pilot.connections.rdbms.rdbms_connect import RDBMSDatabase
class PostgresConnector(RDBMSDatabase):
"""PostgresConnector is a class which Connector"""
type: str = "POSTGRESQL"
driver: str = "postgresql"
default_db = ["information_schema", "performance_schema", "sys", "mysql"]