Skip to content

Commit e043c31

Browse files
author
James Cor
committed
align
1 parent a347c19 commit e043c31

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

sql/plan/project.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ import (
2626
// Project is a projection of certain expression from the children node.
2727
type Project struct {
2828
UnaryNode
29-
deps sql.ColSet
30-
sch sql.Schema
29+
deps sql.ColSet
30+
sch sql.Schema
3131

3232
// Projections are the expressions to be projected on the row returned by the child node
3333
Projections []sql.Expression

sql/plan/tablealias.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ import (
2121
// TableAlias is a node that acts as a table with a given name.
2222
type TableAlias struct {
2323
*UnaryNode
24-
cols sql.ColSet
25-
sch sql.Schema
24+
cols sql.ColSet
2625
name string
2726
comment string
27+
sch sql.Schema
2828
id sql.TableId
2929
}
3030

0 commit comments

Comments
 (0)