diff options
| author | Alan Donovan <adonovan@google.com> | 2025-11-14 14:59:36 -0500 |
|---|---|---|
| committer | Gopher Robot <gobot@golang.org> | 2025-11-14 14:05:53 -0800 |
| commit | aea881230dcc640ad730d3759423104074577756 (patch) | |
| tree | d221fb2269a355d666d131a5ad31451aa2edb299 /src/database/sql | |
| parent | 120f1874ef380362cf8b8c4775a327bcd417ff70 (diff) | |
| download | go-aea881230dcc640ad730d3759423104074577756.tar.xz | |
std: fix printf("%q", int) mistakes
For #72850
Change-Id: I07e64f05c82a34b1dadb9a72e16f5045e68cbd24
Reviewed-on: https://go-review.googlesource.com/c/go/+/720642
Auto-Submit: Alan Donovan <adonovan@google.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Diffstat (limited to 'src/database/sql')
| -rw-r--r-- | src/database/sql/fakedb_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/database/sql/fakedb_test.go b/src/database/sql/fakedb_test.go index 003e6c6298..e5f0459303 100644 --- a/src/database/sql/fakedb_test.go +++ b/src/database/sql/fakedb_test.go @@ -969,7 +969,7 @@ func (s *fakeStmt) QueryContext(ctx context.Context, args []driver.NamedValue) ( idx := t.columnIndex(wcol.Column) if idx == -1 { t.mu.Unlock() - return nil, fmt.Errorf("fakedb: invalid where clause column %q", wcol) + return nil, fmt.Errorf("fakedb: invalid where clause column %v", wcol) } tcol := trow.cols[idx] if bs, ok := tcol.([]byte); ok { |
