Coverage for mindsdb / integrations / handlers / apache_doris_handler / apache_doris_handler.py: 0%

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 ApacheDorisHandler(MySQLHandler): 

5 """This handler handles connection and execution of the Apache Doris statements.""" 

6 

7 name = 'apache_doris' 

8 

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

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