Skip to content

Commit c97cb0a

Browse files
committed
[ga-format-pr] Run ./format_repo.sh to fix formatting
1 parent df8f121 commit c97cb0a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

sql/rowexec/proc_iters.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ func (b *beginEndIter) Next(ctx *sql.Context) (sql.Row, error) {
7474
if err := startTransaction(ctx); err != nil {
7575
return nil, err
7676
}
77-
77+
7878
row, err := b.rowIter.Next(ctx)
7979
if err != nil {
8080
if exitErr, ok := err.(expression.ProcedureBlockExitError); ok && b.Pref.CurrentHeight() == int(exitErr) {
@@ -408,7 +408,7 @@ func (i *iterateIter) Close(ctx *sql.Context) error {
408408
return nil
409409
}
410410

411-
// startTransaction begins a new transaction if necessary, e.g. if a statement in a stored procedure committed the
411+
// startTransaction begins a new transaction if necessary, e.g. if a statement in a stored procedure committed the
412412
// current one
413413
func startTransaction(ctx *sql.Context) error {
414414
if ctx.GetTransaction() == nil {
@@ -422,6 +422,6 @@ func startTransaction(ctx *sql.Context) error {
422422
ctx.SetTransaction(tx)
423423
}
424424
}
425-
425+
426426
return nil
427-
}
427+
}

0 commit comments

Comments
 (0)