Update godoc.

This commit is contained in:
go-jet 2019-07-16 12:17:27 +02:00
parent 6f5d25ea9f
commit 57added50a
7 changed files with 28 additions and 17 deletions

View file

@ -103,7 +103,8 @@ func (c columnImpl) serialize(statement statementType, out *sqlBuilder, options
}
//------------------------------------------------------//
// Dummy type for select * AllColumns
// Redefined type to support list of columns as projection
type ColumnList []Column
// projection interface implementation
@ -131,7 +132,8 @@ func (cl ColumnList) serializeForProjection(statement statementType, out *sqlBui
return nil
}
// column interface implementation
// dummy column interface implementation
func (cl ColumnList) Name() string { return "" }
func (cl ColumnList) TableName() string { return "" }
func (cl ColumnList) setTableName(name string) {}