소스 검색

HUE-6389 [autocomplete] Ignore subqueries when sending tables to the metadata API

Johan Ahlen 8 년 전
부모
커밋
46c68d4
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      desktop/core/src/desktop/static/desktop/js/apiHelper.js

+ 3 - 0
desktop/core/src/desktop/static/desktop/js/apiHelper.js

@@ -1527,6 +1527,9 @@ var ApiHelper = (function () {
     var tables = [];
     var tableIndex = {};
     options.tables.forEach(function (table) {
+      if (table.subQuery || !table.identifierChain) {
+        return;
+      }
       var clonedIdentifierChain = table.identifierChain.concat();
 
       var databasePrefix;