fixed merger ordering issue

This commit is contained in:
2026-06-15 16:41:59 -04:00
parent d2cdd680ed
commit c5d652c6fd
6 changed files with 1048 additions and 793 deletions

View File

@ -792,7 +792,7 @@ impl Merger {
};
for table_name in &entity_type.hierarchy {
let table_fields = match grouped_fields.get(&table_name).and_then(|v| v.as_array()) {
let table_fields = match grouped_fields.get(table_name).and_then(|v| v.as_array()) {
Some(arr) => arr
.iter()
.filter_map(|v| v.as_str().map(|s| s.to_string()))