From 01190e5d78a45773bb50ed9b7f768b349f6a36c5 Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Sat, 30 Apr 2022 08:29:51 -0500 Subject: [PATCH] Update ScanPlan.Scan documentation --- pgtype/pgtype.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pgtype/pgtype.go b/pgtype/pgtype.go index bf58bb23..636b0954 100644 --- a/pgtype/pgtype.go +++ b/pgtype/pgtype.go @@ -516,7 +516,8 @@ type EncodePlan interface { // ScanPlan is a precompiled plan to scan into a type of destination. type ScanPlan interface { - // Scan scans src into target. + // Scan scans src into target. src is only valid during the call to Scan. The ScanPlan must not retain a reference to + // src. Scan(src []byte, target any) error }