Types rename.
This commit is contained in:
parent
db43f471ec
commit
18bbf1b5fb
32 changed files with 98 additions and 97 deletions
|
|
@ -1,7 +1,7 @@
|
|||
package jet
|
||||
|
||||
type projection interface {
|
||||
serializeForProjection(statement statementType, out *queryData) error
|
||||
serializeForProjection(statement statementType, out *sqlBuilder) error
|
||||
from(subQuery ExpressionTable) projection
|
||||
}
|
||||
|
||||
|
|
@ -18,7 +18,7 @@ func (cl ProjectionList) from(subQuery ExpressionTable) projection {
|
|||
return newProjectionList
|
||||
}
|
||||
|
||||
func (cl ProjectionList) serializeForProjection(statement statementType, out *queryData) error {
|
||||
func (cl ProjectionList) serializeForProjection(statement statementType, out *sqlBuilder) error {
|
||||
err := serializeProjectionList(statement, cl, out)
|
||||
|
||||
if err != nil {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue