Skip to content

Commit 0e192f8

Browse files
authored
graph: Fix immutable entity memoization bypass in append_row() (#6083)
1 parent d4ddfaf commit 0e192f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graph/src/components/store/write.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ impl RowGroup {
446446
if self.immutable {
447447
match row {
448448
EntityModification::Insert { .. } => {
449-
self.rows.push(row);
449+
self.push_row(row);
450450
}
451451
EntityModification::Overwrite { .. } | EntityModification::Remove { .. } => {
452452
return Err(internal_error!(

0 commit comments

Comments
 (0)