Skip to content

Commit d4d0908

Browse files
authored
Merge pull request #179 from Helene/qh_skip_identifiers
Skip execution findIdentifiers in QueryHandler
2 parents 991e8f1 + 2ee56dd commit d4d0908

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

source/queryHandler/QueryHandler.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,9 +165,10 @@ def __init__(self, query, res_json):
165165
self.rows = self.__parseRows()
166166

167167
self.index_cache = {} # (metric, id) -> row value index
168-
self.ids = self._findIdentifiers()
168+
self.ids = None
169169

170170
if self.query and len(self.query.measurements) > 0:
171+
self.ids = self._findIdentifiers()
171172
self._populate_index_cache()
172173
self._add_calculated_colunm_headers()
173174

0 commit comments

Comments
 (0)