From 40c5e7607193c90e28514894826c97a3906824ed Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 13 Jul 2026 19:22:42 +0000 Subject: [PATCH] test: canary PR to validate the flaky-benchmark fixes (do not merge) Extends a cold-path error string in vortex-array, mimicking #8681 - a PR that changed only this kind of string and still got five false CodSpeed flags under glibc malloc. The change shifts the vortex-array bench binaries' layout without touching any benchmarked code path, so this stacked PR's CodSpeed run (compared against the flaky-microbenchmarks-cleanup branch) should report no changes if the mimalloc fixes hold. Signed-off-by: Claude Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01T6PPcdrqcNeUkfi1EGd4oC --- vortex-array/src/serde.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vortex-array/src/serde.rs b/vortex-array/src/serde.rs index 9fdf72f39fb..427460d8e6d 100644 --- a/vortex-array/src/serde.rs +++ b/vortex-array/src/serde.rs @@ -329,7 +329,10 @@ impl SerializedArray { if session.allows_unknown() { return self.decode_foreign(encoding_id, dtype, len, ctx); } - vortex_bail!("Unknown encoding: {}", encoding_id); + vortex_bail!( + "Unknown encoding: {} (not registered in this session)", + encoding_id + ); }; let children = SerializedArrayChildren {