Extend set operator to accept sets as parameters.
This commit is contained in:
parent
240ddd65e6
commit
1fd63b8783
4 changed files with 57 additions and 8 deletions
|
|
@ -1,5 +1,14 @@
|
|||
package sqlbuilder
|
||||
|
||||
type rowsType interface {
|
||||
clause
|
||||
hasRows()
|
||||
}
|
||||
|
||||
type isRowsType struct{}
|
||||
|
||||
func (i *isRowsType) hasRows() {}
|
||||
|
||||
// A clause that can be used in orderBy by
|
||||
|
||||
// A clause that is selectable.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue