jt2594838 commented on code in PR #730:
URL: https://github.com/apache/tsfile/pull/730#discussion_r2851905090
##########
python/tsfile/utils.py:
##########
@@ -116,10 +116,16 @@ def _gen(is_iterator: bool) -> Iterator[pd.DataFrame]:
is_tree_model = len(table_schema) == 0
time_column = None
+ column_name_to_query = []
+ no_data_query = True
if is_tree_model:
if _column_names is None:
print("columns name is None, return all columns")
+ # When querying tables in the tree, only measurements are
allowed currently.
+ no_data_query = False
Review Comment:
no_data_query -> no_field_query
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]