Compare commits

...

1 Commits

Author SHA1 Message Date
7d64f18f54 v0.0.368
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 2m9s
2024-01-13 01:29:40 +01:00
2 changed files with 3 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
package goext
const GoextVersion = "0.0.367"
const GoextVersion = "0.0.368"
const GoextVersionTimestamp = "2024-01-12T18:40:29+0100"
const GoextVersionTimestamp = "2024-01-13T01:29:40+0100"

View File

@@ -53,7 +53,7 @@ func BuildUpdateStatement(q Queryable, tableName string, obj any, idColumn strin
return "", nil, err
}
setClauses = append(setClauses, fmt.Sprintf("(%s = :%s)", columnName, params.Add(val)))
setClauses = append(setClauses, fmt.Sprintf("%s = :%s", columnName, params.Add(val)))
}
}