forked from Servicewall/clickhouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
create.go
52 lines (45 loc) · 1.33 KB
/
create.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package clickhouse
import (
"gorm.io/gorm"
"gorm.io/gorm/callbacks"
"gorm.io/gorm/clause"
)
func Create(db *gorm.DB) {
if db.Error == nil {
if db.Statement.Schema != nil && !db.Statement.Unscoped {
for _, c := range db.Statement.Schema.CreateClauses {
db.Statement.AddClause(c)
}
}
if db.Statement.SQL.String() == "" {
db.Statement.SQL.Grow(180)
db.Statement.AddClauseIfNotExists(clause.Insert{})
if values := callbacks.ConvertToCreateValues(db.Statement); len(values.Values) > 1 {
prepareValues := clause.Values{
Columns: values.Columns,
Values: [][]interface{}{values.Values[0]},
}
db.Statement.AddClause(prepareValues)
db.Statement.Build("INSERT", "VALUES", "ON CONFLICT")
stmt, err := db.Statement.ConnPool.PrepareContext(db.Statement.Context, db.Statement.SQL.String())
if db.AddError(err) != nil {
return
}
defer stmt.Close()
for _, value := range values.Values {
if _, err := stmt.Exec(value...); db.AddError(err) != nil {
return
}
}
return
} else {
db.Statement.AddClause(values)
db.Statement.Build("INSERT", "VALUES", "ON CONFLICT")
}
}
if !db.DryRun && db.Error == nil {
_, err := db.Statement.ConnPool.ExecContext(db.Statement.Context, db.Statement.SQL.String(), db.Statement.Vars...)
db.AddError(err)
}
}
}