Remove unused fields
This commit is contained in:
parent
535c86bca0
commit
f98ff568fb
1 changed files with 14 additions and 17 deletions
|
@ -27,23 +27,20 @@ type join struct {
|
|||
|
||||
// Query holds the state for the built up query
|
||||
type Query struct {
|
||||
executor Executor
|
||||
plainSQL plainSQL
|
||||
delete bool
|
||||
update map[string]interface{}
|
||||
selectCols []string
|
||||
count bool
|
||||
from []string
|
||||
innerJoins []join
|
||||
outerJoins []join
|
||||
leftOuterJoins []join
|
||||
rightOuterJoins []join
|
||||
where []where
|
||||
groupBy []string
|
||||
orderBy []string
|
||||
having []string
|
||||
limit int
|
||||
offset int
|
||||
executor Executor
|
||||
plainSQL plainSQL
|
||||
delete bool
|
||||
update map[string]interface{}
|
||||
selectCols []string
|
||||
count bool
|
||||
from []string
|
||||
innerJoins []join
|
||||
where []where
|
||||
groupBy []string
|
||||
orderBy []string
|
||||
having []string
|
||||
limit int
|
||||
offset int
|
||||
}
|
||||
|
||||
func buildQuery(q *Query) (string, []interface{}) {
|
||||
|
|
Loading…
Reference in a new issue