From 6b72281ea618b3b9ca913c43b804cecfa263e4b4 Mon Sep 17 00:00:00 2001 From: Noah Treuhaft Date: Thu, 21 May 2026 16:50:13 -0400 Subject: [PATCH] ztest: always run YAML SPQ-style tests with sam and vam Always run SPQ-style tests loaded from YAML with both sam and vam regardless of the value of the vector key. This does not affect ztests not loaded from YAML (namely those in runtime/sam/expr/expr_test.go, runtime/sam/expr/functions_test.go, and runtime/sam/op/sort/sort_test.go). --- ztest/ztest.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ztest/ztest.go b/ztest/ztest.go index 0fb63cd85..1d68f0bc6 100644 --- a/ztest/ztest.go +++ b/ztest/ztest.go @@ -176,6 +176,9 @@ func Load(dirname string) ([]Bundle, error) { continue } for _, zt := range zts { + if zt.SPQ != "" { + zt.Vector = true + } bundles = append(bundles, Bundle{filename, zt, nil}) } }