Additional documentation.
This commit is contained in:
parent
d253a35161
commit
b10270b502
48 changed files with 892 additions and 699 deletions
|
|
@ -2,12 +2,13 @@ package jet
|
|||
|
||||
type projection interface {
|
||||
serializeForProjection(statement statementType, out *sqlBuilder) error
|
||||
from(subQuery ExpressionTable) projection
|
||||
from(subQuery SelectTable) projection
|
||||
}
|
||||
|
||||
// ProjectionList is a redefined type, so that ProjectionList can be used as a projection.
|
||||
type ProjectionList []projection
|
||||
|
||||
func (cl ProjectionList) from(subQuery ExpressionTable) projection {
|
||||
func (cl ProjectionList) from(subQuery SelectTable) projection {
|
||||
newProjectionList := ProjectionList{}
|
||||
|
||||
for _, projection := range cl {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue