Open cjdduarte opened 6 days ago
Looks like an off-by-one bug here. @RumovZ can you confirm?
@abdnh, yes, looks like it. Also, tags_column
is set to max_field
. This would seem more reasonable:
for idx in (max_field + 1) as usize..=metadata.column_labels.len() {
if !meta_columns.contains(&idx) {
metadata.tags_column = idx as u32;
break;
}
}
Thanks !!!
I found a new issue while importing. My import file has 16 columns, with the last column containing the tags. However, the importer does not automatically associate the last field with the tag column, requiring me to select it manually each time.
The legacy import version used to associate this correctly, so it seems like there has been a change in how this is handled.