From f98ff568fbc46c7d22ca0eba44870bc4048a4157 Mon Sep 17 00:00:00 2001 From: Aaron L Date: Wed, 3 Aug 2016 22:44:57 -0700 Subject: [PATCH] Remove unused fields --- boil/query.go | 31 ++++++++++++++----------------- 1 file changed, 14 insertions(+), 17 deletions(-) diff --git a/boil/query.go b/boil/query.go index d69b753..e047e39 100644 --- a/boil/query.go +++ b/boil/query.go @@ -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{}) {