Browse Source

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

(cherry picked from commit c3f92d236ea9afd811a9410566920a3505dbb503)
Romain Rigaux 7 năm trước cách đây
mục cha
commit
20912b4332

+ 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: