Skip to content

Commit

Permalink
ignore notices in Exec
Browse files Browse the repository at this point in the history
  • Loading branch information
bmizerany committed Mar 28, 2012
1 parent 557d9c6 commit d0b6a08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conn.go
Expand Up @@ -364,7 +364,7 @@ func (st *stmt) Exec(v []driver.Value) (res driver.Result, err error) {
return
case 'D':
errorf("unexpected data row returned in Exec; check your query")
case 'S':
case 'S', 'N':
// Ignore
default:
errorf("unknown exec response: %q", t)
Expand Down

0 comments on commit d0b6a08

Please sign in to comment.