Skip to content

Commit

Permalink
Merge pull request #569 from alrs/fix-example-err
Browse files Browse the repository at this point in the history
examples/sql-nullstring: fix dropped error
  • Loading branch information
chris-ramon authored Nov 22, 2020
2 parents dd05d5e + 5088e2a commit ba29b76
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions examples/sql-nullstring/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,9 @@ query {
log.Fatal(r1)
}
b1, err := json.MarshalIndent(r1, "", " ")
if err != nil {
log.Fatal(err)
}
b2, err := json.MarshalIndent(r2, "", " ")
if err != nil {
log.Fatal(err)
Expand Down

0 comments on commit ba29b76

Please sign in to comment.