v0.0.368
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 2m9s

This commit is contained in:
Mike Schwörer 2024-01-13 01:29:40 +01:00
parent d08b2e565a
commit 7d64f18f54
Signed by: Mikescher
GPG Key ID: D3C7172E0A70F8CF
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
package goext 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 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)))
} }
} }