Merge pull request #589 from rghose/patch-1

this fixes syntax error for go1.3.3
This commit is contained in:
Jinzhu 2015-08-01 08:51:36 +08:00
commit 6d4a5f75ee
1 changed files with 1 additions and 1 deletions

View File

@ -230,7 +230,7 @@ func toQueryMarks(primaryValues [][]interface{}) string {
for _, primaryValue := range primaryValues {
var marks []string
for range primaryValue {
for _,_ = range primaryValue {
marks = append(marks, "?")
}