Add ROW constructor and IN/EXISTS operator.
This commit is contained in:
parent
08e4392278
commit
3367df247c
18 changed files with 183 additions and 565 deletions
|
|
@ -175,16 +175,3 @@ type Statement interface {
|
|||
// }
|
||||
// return nil
|
||||
//}
|
||||
|
||||
func newOrderByListClause(clauses ...OrderByClause) *listClause {
|
||||
ret := &listClause{
|
||||
clauses: make([]Clause, len(clauses), len(clauses)),
|
||||
includeParentheses: false,
|
||||
}
|
||||
|
||||
for i, c := range clauses {
|
||||
ret.clauses[i] = c
|
||||
}
|
||||
|
||||
return ret
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue