From 41b7080a2834579050b89e52c5275939a224104a Mon Sep 17 00:00:00 2001 From: Nick Tobey Date: Wed, 16 Apr 2025 14:43:37 -0700 Subject: [PATCH] Consistently use pointer receiver for ByteArray --- go/store/val/value_store.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/store/val/value_store.go b/go/store/val/value_store.go index 7d5112d970..20adc17e36 100644 --- a/go/store/val/value_store.go +++ b/go/store/val/value_store.go @@ -185,7 +185,7 @@ func (b *ByteArray) UnwrapAny(ctx context.Context) (interface{}, error) { } // Unwrap implements sql.BytesWrapper -func (b ByteArray) Unwrap(ctx context.Context) ([]byte, error) { +func (b *ByteArray) Unwrap(ctx context.Context) ([]byte, error) { return b.GetBytes(ctx) }