We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e6230e commit bb0cb7bCopy full SHA for bb0cb7b
v03_pipeline/lib/misc/io.py
@@ -151,7 +151,7 @@ def select_relevant_fields(
151
for row_field in dataset_type.optional_row_fields
152
if hasattr(mt, row_field)
153
]
154
- mt = mt.select_rows([*dataset_type.row_fields, *optional_row_fields])
+ mt = mt.select_rows(*dataset_type.row_fields, *optional_row_fields)
155
mt = mt.select_cols(*dataset_type.col_fields)
156
return mt.select_entries(*dataset_type.entries_fields)
157
0 commit comments