浏览代码

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

(cherry picked from commit c3f92d236ea9afd811a9410566920a3505dbb503)
Romain Rigaux 7 年之前
父节点
当前提交
20912b4332
共有 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: