Merge pull request #1119 from NDevox/master

Fixes #1118
This commit is contained in:
Jinzhu 2016-07-20 08:36:53 +09:00 committed by GitHub
commit a646b13548
1 changed files with 1 additions and 1 deletions

View File

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