Explorar o código

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

Johan Ahlen %!s(int64=8) %!d(string=hai) anos
pai
achega
46c68d4
Modificáronse 1 ficheiros con 3 adicións e 0 borrados
  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;