2020-02-07 18:45:35 +03:00
|
|
|
package clause
|
|
|
|
|
2020-06-06 12:47:30 +03:00
|
|
|
import "sort"
|
|
|
|
|
2020-02-07 18:45:35 +03:00
|
|
|
type Set []Assignment
|
|
|
|
|
|
|
|
type Assignment struct {
|
|
|
|
Column Column
|
|
|
|
Value interface{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (set Set) Name() string {
|
|
|
|
return "SET"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (set Set) Build(builder Builder) {
|
|
|
|
if len(set) > 0 {
|
|
|
|
for idx, assignment := range set {
|
|
|
|
if idx > 0 {
|
|
|
|
builder.WriteByte(',')
|
|
|
|
}
|
|
|
|
builder.WriteQuoted(assignment.Column)
|
|
|
|
builder.WriteByte('=')
|
2020-03-09 12:07:00 +03:00
|
|
|
builder.AddVar(builder, assignment.Value)
|
2020-02-07 18:45:35 +03:00
|
|
|
}
|
|
|
|
} else {
|
2021-11-29 06:02:32 +03:00
|
|
|
builder.WriteQuoted(Column{Name: PrimaryKey})
|
2020-02-07 18:45:35 +03:00
|
|
|
builder.WriteByte('=')
|
2021-11-29 06:02:32 +03:00
|
|
|
builder.WriteQuoted(Column{Name: PrimaryKey})
|
2020-02-07 18:45:35 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// MergeClause merge assignments clauses
|
|
|
|
func (set Set) MergeClause(clause *Clause) {
|
Fix Statement Where clone array corruption in v2
Method-chaining in gorm is predicated on a `Clause`'s `MergeClause`
method ensuring that the two clauses are disconnected in terms of
pointers (at least in the Wherec case).
However, the original Where implementation used `append`, which
only returns a new instance if the backing array needs to be resized.
In some cases, this is true. Practically, go doubles the size of the
slice once it gets full, so the following slice `append` calls would
result in a new slice:
* 0 -> 1
* 1 -> 2
* 2 -> 4
* 4 -> 8
* and so on.
So, when the number of "where" conditions was 0, 1, 2, or 4, method-chaining
would work as expected. However, when it was 3, 5, 6, or 7, modifying the
copy would modify the original.
This also updates the "order by", "group by" and "set" clauses.
2020-06-07 23:41:54 +03:00
|
|
|
copiedAssignments := make([]Assignment, len(set))
|
|
|
|
copy(copiedAssignments, set)
|
|
|
|
clause.Expression = Set(copiedAssignments)
|
2020-02-07 18:45:35 +03:00
|
|
|
}
|
2020-06-06 12:47:30 +03:00
|
|
|
|
|
|
|
func Assignments(values map[string]interface{}) Set {
|
2020-06-08 08:45:41 +03:00
|
|
|
keys := make([]string, 0, len(values))
|
2020-06-06 12:47:30 +03:00
|
|
|
for key := range values {
|
|
|
|
keys = append(keys, key)
|
|
|
|
}
|
|
|
|
sort.Strings(keys)
|
|
|
|
|
2020-06-08 08:45:41 +03:00
|
|
|
assignments := make([]Assignment, len(keys))
|
|
|
|
for idx, key := range keys {
|
|
|
|
assignments[idx] = Assignment{Column: Column{Name: key}, Value: values[key]}
|
2020-06-06 12:47:30 +03:00
|
|
|
}
|
|
|
|
return assignments
|
|
|
|
}
|
2020-06-09 04:04:25 +03:00
|
|
|
|
|
|
|
func AssignmentColumns(values []string) Set {
|
|
|
|
assignments := make([]Assignment, len(values))
|
|
|
|
for idx, value := range values {
|
|
|
|
assignments[idx] = Assignment{Column: Column{Name: value}, Value: Column{Table: "excluded", Name: value}}
|
|
|
|
}
|
|
|
|
return assignments
|
|
|
|
}
|