Explorar el Código

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

Johan Ahlen hace 8 años
padre
commit
46c68d4
Se han modificado 1 ficheros con 3 adiciones y 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;