Coverage for mindsdb / integrations / handlers / mariadb_handler / mariadb_handler.py: 100%

5 statements  

« 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 

2 

3 

4class MariaDBHandler(MySQLHandler): 

5 """ 

6 This handler handles connection and execution of the MariaDB statements. 

7 """ 

8 

9 name = 'mariadb' 

10 

11 def __init__(self, name, **kwargs): 

12 super().__init__(name, **kwargs)