Skip to content

Commit

Permalink
Fix error string
Browse files Browse the repository at this point in the history
Signed-off-by: sashayakovtseva <[email protected]>
  • Loading branch information
sashayakovtseva committed Mar 1, 2024
1 parent 7e26617 commit d82a047
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/datastore/ydb/query.go
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ func queryRow(
return err
}
if !res.NextRow() {
return fmt.Errorf("no unique id rows")
return fmt.Errorf("no rows in result set")
}
if err := res.Scan(values...); err != nil {
return err
Expand Down

0 comments on commit d82a047

Please sign in to comment.