Explorar el Código

HUE-9444 [notebook] Teradata and Athena jdbc interfaces are not working (#1240)

Ivan Dzikovsky hace 5 años
padre
commit
e0d6825e6b
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      desktop/libs/notebook/src/notebook/connectors/base.py

+ 2 - 2
desktop/libs/notebook/src/notebook/connectors/base.py

@@ -466,10 +466,10 @@ def get_api(request, snippet):
       from notebook.connectors.jdbc import JdbcApi
       return JdbcApi(request.user, interpreter=interpreter)
   elif interface == 'teradata':
-    from notebook.connectors.jdbc import JdbcApiTeradata
+    from notebook.connectors.jdbc_teradata import JdbcApiTeradata
     return JdbcApiTeradata(request.user, interpreter=interpreter)
   elif interface == 'athena':
-    from notebook.connectors.jdbc import JdbcApiAthena
+    from notebook.connectors.jdbc_athena import JdbcApiAthena
     return JdbcApiAthena(request.user, interpreter=interpreter)
   elif interface == 'presto':
     from notebook.connectors.jdbc_presto import JdbcApiPresto