Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
vitalyisaev2 committed Oct 3, 2024
1 parent 7c78101 commit c2afeb9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/server/datasource/rdbms/mysql/rows.go
Original file line number Diff line number Diff line change
Expand Up @@ -286,10 +286,10 @@ func (r *rows) MakeTransformer(ydbTypes []*Ydb.Type, cc conversion.Collection) (
}
case err := <-r.errChan:
if err != nil {
return nil, fmt.Errorf("error occured during async reading: %w", err)
return nil, fmt.Errorf("error occurred during async reading: %w", err)

Check warning on line 289 in app/server/datasource/rdbms/mysql/rows.go

View check run for this annotation

Codecov / codecov/patch

app/server/datasource/rdbms/mysql/rows.go#L289

Added line #L289 was not covered by tests
}

// nil error means that asynchronous reading was successfuly finished
// nil error means that asynchronous reading was successfully finished
// before the first line was received - the case of empty table
r.logger.Warn("table seems to be empty")
case <-r.ctx.Done():
Expand Down

0 comments on commit c2afeb9

Please sign in to comment.