Просмотр исходного кода

HUE-8330 [cluster] Fix autocomplete of columns on a remote cluster

Romain Rigaux 7 лет назад
Родитель
Сommit
c3f92d236e
1 измененных файлов с 2 добавлено и 0 удалено
  1. 2 0
      desktop/libs/notebook/src/notebook/connectors/altus_adb.py

+ 2 - 0
desktop/libs/notebook/src/notebook/connectors/altus_adb.py

@@ -82,6 +82,8 @@ class AltusAdbApi(Api):
 
     if database is not None:
       url_path = '%s/%s' % (url_path, database)
+    if table is not None:
+      url_path = '%s/%s' % (url_path, table)
     if column is not None:
       url_path = '%s/%s' % (url_path, column)
     if nested is not None: