Browse Source

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

Romain Rigaux 7 years ago
parent
commit
c3f92d236e
1 changed files with 2 additions and 0 deletions
  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: