File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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
413413func 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+ }
You can’t perform that action at this time.
0 commit comments