Skip to content

Commit

Permalink
[SQLite] SQLite Executor Import (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
meowcodes authored May 8, 2020
1 parent 72c6b91 commit ed20c95
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion datahub/server/lib/query_executor/all_executors.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@

from .executors.hive import HiveQueryExecutor
from .executors.presto import PrestoQueryExecutor
from .executors.sqlalchemy import MysqlQueryExecutor, DruidQueryExecutor
from .executors.sqlalchemy import (
MysqlQueryExecutor,
DruidQueryExecutor,
SqliteQueryExecutor,
)
from .executors.bigquery import BigQueryQueryExecutor


Expand All @@ -15,6 +19,7 @@
PrestoQueryExecutor,
MysqlQueryExecutor,
DruidQueryExecutor,
SqliteQueryExecutor,
BigQueryQueryExecutor,
] + ALL_PLUGIN_EXECUTORS

Expand Down

0 comments on commit ed20c95

Please sign in to comment.