Missed some compilation errors
This commit is contained in:
parent
1a1a025b58
commit
9503acaf8e
1 changed files with 0 additions and 21 deletions
|
@ -54,27 +54,6 @@ func InnerJoin(stmt string, args ...interface{}) QueryMod {
|
|||
}
|
||||
}
|
||||
|
||||
// OuterJoin on another table
|
||||
func OuterJoin(stmt string, args ...interface{}) QueryMod {
|
||||
return func(q *boil.Query) {
|
||||
boil.SetOuterJoin(q, stmt, args...)
|
||||
}
|
||||
}
|
||||
|
||||
// LeftOuterJoin on another table
|
||||
func LeftOuterJoin(stmt string, args ...interface{}) QueryMod {
|
||||
return func(q *boil.Query) {
|
||||
boil.SetLeftOuterJoin(q, stmt, args...)
|
||||
}
|
||||
}
|
||||
|
||||
// RightOuterJoin on another table
|
||||
func RightOuterJoin(stmt string, args ...interface{}) QueryMod {
|
||||
return func(q *boil.Query) {
|
||||
boil.SetRightOuterJoin(q, stmt, args...)
|
||||
}
|
||||
}
|
||||
|
||||
// Select specific columns opposed to all columns
|
||||
func Select(columns ...string) QueryMod {
|
||||
return func(q *boil.Query) {
|
||||
|
|
Loading…
Add table
Reference in a new issue