Selaa lähdekoodia

HUE-6077 [metadata] Correct typo on noDDL stats

Romain Rigaux 8 vuotta sitten
vanhempi
commit
c648579
1 muutettua tiedostoa jossa 1 lisäystä ja 2 poistoa
  1. 1 2
      desktop/libs/metadata/src/metadata/optimizer_client.py

+ 1 - 2
desktop/libs/metadata/src/metadata/optimizer_client.py

@@ -208,9 +208,8 @@ class OptimizerApi(object):
 
     return {
       'hints': hints,
-      'tables': response.get('tables', []),
       'noStats': response.get('noStats', []),
-      'noDDL': response.get('noStats', []),
+      'noDDL': response.get('noDDL', []),
     }
 
   def similar_queries(self, source_platform, query, page_size=100, startingToken=None):