Coverage for mindsdb / integrations / handlers / planetscale_handler / planetscale_handler.py: 0%
5 statements
« prev ^ index » next coverage.py v7.13.1, created at 2026-01-21 00:36 +0000
« prev ^ index » next coverage.py v7.13.1, created at 2026-01-21 00:36 +0000
1from mindsdb.integrations.handlers.mysql_handler import Handler as MySQLHandler
4class PlanetScaleHandler(MySQLHandler):
5 """
6 This handler handles the connection and execution of queries against PlanetScale.
7 """
8 name = 'planet_scale'
10 def __init__(self, name, **kwargs):
11 super().__init__(name, **kwargs)