We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a347c19 commit e043c31Copy full SHA for e043c31
sql/plan/project.go
@@ -26,8 +26,8 @@ import (
26
// Project is a projection of certain expression from the children node.
27
type Project struct {
28
UnaryNode
29
- deps sql.ColSet
30
- sch sql.Schema
+ deps sql.ColSet
+ sch sql.Schema
31
32
// Projections are the expressions to be projected on the row returned by the child node
33
Projections []sql.Expression
sql/plan/tablealias.go
@@ -21,10 +21,10 @@ import (
21
// TableAlias is a node that acts as a table with a given name.
22
type TableAlias struct {
23
*UnaryNode
24
- cols sql.ColSet
25
+ cols sql.ColSet
name string
comment string
id sql.TableId
}
0 commit comments