Skip to content

Commit 2ee56dd

Browse files
committed
query_handler_improvements
Signed-off-by: hwassman <[email protected]>
1 parent 991e8f1 commit 2ee56dd

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)