From 9d8bb822eb17d1426c7ae7621518db65f3edbef4 Mon Sep 17 00:00:00 2001 From: incrypto32 Date: Tue, 22 Jul 2025 21:34:38 +0530 Subject: [PATCH] graph: Fix immutable entity memoization bypass in append_row() --- graph/src/components/store/write.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graph/src/components/store/write.rs b/graph/src/components/store/write.rs index 76c71ce5e39..b75d2912de2 100644 --- a/graph/src/components/store/write.rs +++ b/graph/src/components/store/write.rs @@ -446,7 +446,7 @@ impl RowGroup { if self.immutable { match row { EntityModification::Insert { .. } => { - self.rows.push(row); + self.push_row(row); } EntityModification::Overwrite { .. } | EntityModification::Remove { .. } => { return Err(internal_error!(