This is an automated email from the ASF dual-hosted git repository. hanahmily pushed a commit to branch vectorized-query in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb.git
commit 4b54f1d4f2855a6b4c6c1e48b7fa8afcbc300de2 Author: Hongtao Gao <[email protected]> AuthorDate: Thu May 14 04:40:04 2026 +0000 test(query/integration): flip --measure-vectorized-aggregation-enabled=true in parity gate (G8d.3) With the schema bridge aligned (348c09c2) and the operator emitting row-path-equivalent output for MEAN-on-int and queries that project non-key tags (40fcf37b), GroupBy+Agg vec dispatch passes the full 488 integration specs alongside the existing scan parity. The flag flips on in the parity standalone so any regression in either component fails CI directly. Production default stays off (config.AggregationEnabled default false at config.go) until the soak gate validates it. via [HAPI](https://hapi.run) --- test/integration/standalone/query/vectorized_test.go | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/test/integration/standalone/query/vectorized_test.go b/test/integration/standalone/query/vectorized_test.go index 05c0b0e3c..5a974ddf7 100644 --- a/test/integration/standalone/query/vectorized_test.go +++ b/test/integration/standalone/query/vectorized_test.go @@ -89,14 +89,7 @@ var _ = ginkgo.Describe("vectorized parity", ginkgo.Ordered, func() { config := setup.PropertyClusterConfig(dfWriter) addr, _, closeFn := setup.ClosableStandalone(config, path, ports, "--measure-vectorized-enabled=true", - // G8d.3 left --measure-vectorized-aggregation-enabled=false here - // because the egress parity work surfaced a deeper bug than - // just field naming: GroupBy+Agg vec dispatch panics at - // BatchAggregation.fold (line 268, *TypedColumn[int64] assertion - // against a passthrough source column) regardless of whether - // storage threads opts.GroupBy/Agg. The schema/storage native- - // column bridge in commit 253c5653 is not yet end-to-end - // correct. Re-flip this flag when that root cause is closed. + "--measure-vectorized-aggregation-enabled=true", ) stopFn = func() { closeFn()
