Update ScanPlan.Scan documentation

non-blocking
Jack Christensen 2022-04-30 08:29:51 -05:00
parent a89a400b69
commit 01190e5d78
1 changed files with 2 additions and 1 deletions

View File

@ -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
}