Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions codegen/src/generators/in_memory/queries/update.rs
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,11 @@ impl InMemoryGenerator {
return core::result::Result::Ok(());
}
}
} else if self.columns.is_sized {
// A fixed-size row can always update archived fields in place. If
// one is indexed, finish_update applies the corresponding index
// diffs around that mutation.
quote! {}
} else if touches_index {
// Updating an indexed column must keep the index-maintaining
// reinsert path, regardless of the row's storage shape.
Expand Down
Loading