Skip to content

Commit d364eef

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

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

sql/plan/call.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ type Call struct {
4040
Ops []procedures.InterpreterOperation
4141

4242
// TODO: sure whatever
43-
resSch sql.Schema
43+
resSch sql.Schema
4444
}
4545

4646
var _ sql.Node = (*Call)(nil)
@@ -234,4 +234,3 @@ func (c *Call) GetStatements() []*procedures.InterpreterOperation {
234234
func (c *Call) SetSchema(sch sql.Schema) {
235235
c.resSch = sch
236236
}
237-

sql/procedures/interpreter_logic.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
package procedures
1616

1717
import (
18-
"context"
19-
"errors"
18+
"context"
19+
"errors"
2020
"fmt"
2121
"io"
2222
"strconv"
@@ -832,7 +832,7 @@ func Call(ctx *sql.Context, iNode InterpreterNode, params []*Parameter) (sql.Row
832832

833833
// TODO: remove this; track last selectRowIter
834834
var selIter sql.RowIter
835-
var selSch sql.Schema
835+
var selSch sql.Schema
836836

837837
// Run the statements
838838
// TODO: eventually return multiple sql.RowIters
@@ -873,7 +873,7 @@ func Call(ctx *sql.Context, iNode InterpreterNode, params []*Parameter) (sql.Row
873873
}
874874
if newSelIter != nil {
875875
selIter = newSelIter
876-
selSch = newSelSch
876+
selSch = newSelSch
877877
}
878878
counter = newCounter
879879
}

0 commit comments

Comments
 (0)