forked from danielkurniadi/clickhouse
-
-
Notifications
You must be signed in to change notification settings - Fork 72
/
migrator.go
576 lines (500 loc) · 17.4 KB
/
migrator.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
package clickhouse
import (
"bufio"
"database/sql"
"errors"
"fmt"
"strconv"
"strings"
"gorm.io/gorm"
"gorm.io/gorm/clause"
"gorm.io/gorm/migrator"
"gorm.io/gorm/schema"
)
// Errors enumeration
var (
ErrRenameColumnUnsupported = errors.New("renaming column is not supported in your clickhouse version < 20.4")
ErrRenameIndexUnsupported = errors.New("renaming index is not supported")
ErrCreateIndexFailed = errors.New("failed to create index with name")
)
type Migrator struct {
migrator.Migrator
Dialector
}
// Database
func (m Migrator) CurrentDatabase() (name string) {
m.DB.Raw("SELECT currentDatabase()").Row().Scan(&name)
return
}
func (m Migrator) FullDataTypeOf(field *schema.Field) (expr clause.Expr) {
// Infer the ClickHouse datatype from schema.Field information
expr.SQL = m.Migrator.DataTypeOf(field)
// NOTE:
// NULL and UNIQUE keyword is not supported in clickhouse.
// Hence, skipping checks for field.Unique and field.NotNull
// Build DEFAULT clause after DataTypeOf() expression optionally
if field.HasDefaultValue && (field.DefaultValueInterface != nil || field.DefaultValue != "") {
if field.DefaultValueInterface != nil {
defaultStmt := &gorm.Statement{Vars: []interface{}{field.DefaultValueInterface}}
m.Dialector.BindVarTo(defaultStmt, defaultStmt, field.DefaultValueInterface)
expr.SQL += " DEFAULT " + m.Dialector.Explain(defaultStmt.SQL.String(), field.DefaultValueInterface)
} else if field.DefaultValue != "(-)" {
expr.SQL += " DEFAULT " + field.DefaultValue
}
}
// Build COMMENT clause optionally after DEFAULT
if comment, ok := field.TagSettings["COMMENT"]; ok {
expr.SQL += " COMMENT " + m.Dialector.Explain("?", comment)
}
// Build TTl clause optionally after COMMENT
if ttl, ok := field.TagSettings["TTL"]; ok && ttl != "" {
expr.SQL += " TTL " + ttl
}
// Build CODEC compression algorithm optionally
// NOTE: the codec algo name is case sensitive!
if codecstr, ok := field.TagSettings["CODEC"]; ok && codecstr != "" {
// parse codec one by one in the codec option
codecSlice := strings.Split(codecstr, ",")
codecArgsSQL := m.Dialector.DefaultCompression
if len(codecSlice) > 0 {
codecArgsSQL = strings.Join(codecSlice, ",")
}
codecSQL := fmt.Sprintf(" CODEC(%s) ", codecArgsSQL)
expr.SQL += codecSQL
}
return expr
}
// Tables
func (m Migrator) CreateTable(models ...interface{}) error {
for _, model := range m.ReorderModels(models, false) {
tx := m.DB.Session(new(gorm.Session))
if err := m.RunWithValue(model, func(stmt *gorm.Statement) (err error) {
var (
createTableSQL = "CREATE TABLE ?%s(%s %s %s) %s"
args = []interface{}{clause.Table{Name: stmt.Table}}
)
// Step 1. Build column datatype SQL string
columnSlice := make([]string, 0, len(stmt.Schema.DBNames))
for _, dbName := range stmt.Schema.DBNames {
field := stmt.Schema.FieldsByDBName[dbName]
columnSlice = append(columnSlice, "? ?")
args = append(args,
clause.Column{Name: dbName},
m.FullDataTypeOf(field),
)
}
columnStr := strings.Join(columnSlice, ",")
// Step 2. Build constraint check SQL string if any constraint
constrSlice := make([]string, 0, len(columnSlice))
for _, check := range stmt.Schema.ParseCheckConstraints() {
constrSlice = append(constrSlice, "CONSTRAINT ? CHECK ?")
args = append(args,
clause.Column{Name: check.Name},
clause.Expr{SQL: check.Constraint},
)
}
constrStr := strings.Join(constrSlice, ",")
if len(constrSlice) > 0 {
constrStr = ", " + constrStr
}
// Step 3. Build index SQL string
// NOTE: clickhouse does not support for index class.
indexSlice := make([]string, 0, 10)
for _, index := range stmt.Schema.ParseIndexes() {
if m.CreateIndexAfterCreateTable {
defer func(model interface{}, indexName string) {
// TODO (iqdf): what if there are multiple errors
// when creating indices after create table?
err = tx.Migrator().CreateIndex(model, indexName)
}(model, index.Name)
continue
}
// TODO(iqdf): support primary key by put it as pass the fieldname
// as MergeTree(...) parameters. But somehow it complained.
// Note that primary key doesn't ensure uniqueness
// Get indexing type `gorm:"index,type:minmax"`
// Choice: minmax | set(n) | ngrambf_v1(n, size, hash, seed) | bloomfilter()
indexType := m.Dialector.DefaultIndexType
if index.Type != "" {
indexType = index.Type
}
// Get expression for index options
// Syntax: (`colname1`, ...)
buildIndexOptions := tx.Migrator().(migrator.BuildIndexOptionsInterface)
indexOptions := buildIndexOptions.BuildIndexOptions(index.Fields, stmt)
// Stringify index builder
// TODO (iqdf): support granularity
str := fmt.Sprintf("INDEX ? ? TYPE %s GRANULARITY %d", indexType, m.getIndexGranularityOption(index.Fields))
indexSlice = append(indexSlice, str)
args = append(args, clause.Expr{SQL: index.Name}, indexOptions)
}
indexStr := strings.Join(indexSlice, ", ")
if len(indexSlice) > 0 {
indexStr = ", " + indexStr
}
// Step 4. Finally assemble CREATE TABLE ... SQL string
engineOpts := m.Dialector.DefaultTableEngineOpts
if tableOption, ok := m.DB.Get("gorm:table_options"); ok {
engineOpts = fmt.Sprint(tableOption)
}
clusterOpts := ""
if clusterOption, ok := m.DB.Get("gorm:table_cluster_options"); ok {
clusterOpts = " " + fmt.Sprint(clusterOption) + " "
}
createTableSQL = fmt.Sprintf(createTableSQL, clusterOpts, columnStr, constrStr, indexStr, engineOpts)
err = tx.Exec(createTableSQL, args...).Error
return
}); err != nil {
return err
}
}
return nil
}
func (m Migrator) HasTable(value interface{}) bool {
var count int64
m.RunWithValue(value, func(stmt *gorm.Statement) error {
currentDatabase := m.DB.Migrator().CurrentDatabase()
return m.DB.Raw(
"SELECT count(*) FROM system.tables WHERE database = ? AND name = ? AND is_temporary = ?",
currentDatabase,
stmt.Table,
uint8(0)).Row().Scan(&count)
})
return count > 0
}
func (m Migrator) GetTables() (tableList []string, err error) {
// table_type Enum8('BASE TABLE' = 1, 'VIEW' = 2, 'FOREIGN TABLE' = 3, 'LOCAL TEMPORARY' = 4, 'SYSTEM VIEW' = 5)
err = m.DB.Raw("SELECT TABLE_NAME FROM information_schema.tables where table_schema=? and table_type =1", m.CurrentDatabase()).Scan(&tableList).Error
return
}
// Columns
func (m Migrator) AddColumn(value interface{}, field string) error {
return m.RunWithValue(value, func(stmt *gorm.Statement) error {
if field := stmt.Schema.LookUpField(field); field != nil {
clusterOpts := ""
if clusterOption, ok := m.DB.Get("gorm:table_cluster_options"); ok {
clusterOpts = " " + fmt.Sprint(clusterOption) + " "
}
sQL := fmt.Sprintf("ALTER TABLE ? %s ADD COLUMN ? ?", clusterOpts)
return m.DB.Exec(
sQL,
clause.Table{Name: stmt.Table}, clause.Column{Name: field.DBName},
m.FullDataTypeOf(field),
).Error
}
return fmt.Errorf("failed to look up field with name: %s", field)
})
}
func (m Migrator) DropColumn(value interface{}, name string) error {
return m.RunWithValue(value, func(stmt *gorm.Statement) error {
if field := stmt.Schema.LookUpField(name); field != nil {
name = field.DBName
}
clusterOpts := ""
if clusterOption, ok := m.DB.Get("gorm:table_cluster_options"); ok {
clusterOpts = " " + fmt.Sprint(clusterOption) + " "
}
sQL := fmt.Sprintf("ALTER TABLE ? %s DROP COLUMN ?", clusterOpts)
return m.DB.Exec(
sQL,
clause.Table{Name: stmt.Table}, clause.Column{Name: name},
).Error
})
}
func (m Migrator) AlterColumn(value interface{}, field string) error {
return m.RunWithValue(value, func(stmt *gorm.Statement) error {
if field := stmt.Schema.LookUpField(field); field != nil {
clusterOpts := ""
if clusterOption, ok := m.DB.Get("gorm:table_cluster_options"); ok {
clusterOpts = " " + fmt.Sprint(clusterOption) + " "
}
sQL := fmt.Sprintf("ALTER TABLE ? %s MODIFY COLUMN ? ?", clusterOpts)
return m.DB.Exec(
sQL,
clause.Table{Name: stmt.Table},
clause.Column{Name: field.DBName},
m.FullDataTypeOf(field),
).Error
}
return fmt.Errorf("altercolumn() failed to look up column with name: %s", field)
})
}
// NOTE: Only supported after ClickHouse 20.4 and above.
// See: https://github.com/ClickHouse/ClickHouse/issues/146
func (m Migrator) RenameColumn(value interface{}, oldName, newName string) error {
return m.RunWithValue(value, func(stmt *gorm.Statement) error {
if !m.Dialector.DontSupportRenameColumn {
var field *schema.Field
if f := stmt.Schema.LookUpField(oldName); f != nil {
oldName = f.DBName
field = f
}
if f := stmt.Schema.LookUpField(newName); f != nil {
newName = f.DBName
field = f
}
if field != nil {
clusterOpts := ""
if clusterOption, ok := m.DB.Get("gorm:table_cluster_options"); ok {
clusterOpts = " " + fmt.Sprint(clusterOption) + " "
}
sQL := fmt.Sprintf("ALTER TABLE ? %s RENAME COLUMN ? TO ?", clusterOpts)
return m.DB.Exec(
sQL,
clause.Table{Name: stmt.Table},
clause.Column{Name: oldName},
clause.Column{Name: newName},
).Error
}
return fmt.Errorf("renamecolumn() failed to look up column with name: %s", oldName)
}
return ErrRenameIndexUnsupported
})
}
func (m Migrator) HasColumn(value interface{}, field string) bool {
var count int64
m.RunWithValue(value, func(stmt *gorm.Statement) error {
currentDatabase := m.DB.Migrator().CurrentDatabase()
name := field
if stmt.Schema != nil {
if field := stmt.Schema.LookUpField(field); field != nil {
name = field.DBName
}
}
return m.DB.Raw(
"SELECT count(*) FROM system.columns WHERE database = ? AND table = ? AND name = ?",
currentDatabase, stmt.Table, name,
).Row().Scan(&count)
})
return count > 0
}
// ColumnTypes return columnTypes []gorm.ColumnType and execErr error
func (m Migrator) ColumnTypes(value interface{}) ([]gorm.ColumnType, error) {
columnTypes := make([]gorm.ColumnType, 0)
execErr := m.RunWithValue(value, func(stmt *gorm.Statement) (err error) {
rows, err := m.DB.Session(&gorm.Session{}).Table(stmt.Table).Limit(1).Rows()
if err != nil {
return err
}
defer func() {
if err == nil {
err = rows.Close()
}
}()
var rawColumnTypes []*sql.ColumnType
rawColumnTypes, err = rows.ColumnTypes()
columnTypeSQL := "SELECT name, type, default_expression, comment, is_in_primary_key, character_octet_length, numeric_precision, numeric_precision_radix, numeric_scale, datetime_precision FROM system.columns WHERE database = ? AND table = ?"
if m.Dialector.DontSupportColumnPrecision {
columnTypeSQL = "SELECT name, type, default_expression, comment, is_in_primary_key FROM system.columns WHERE database = ? AND table = ?"
}
columns, rowErr := m.DB.Raw(columnTypeSQL, m.CurrentDatabase(), stmt.Table).Rows()
if rowErr != nil {
return rowErr
}
defer columns.Close()
for columns.Next() {
var (
column migrator.ColumnType
decimalSizeValue *uint64
datetimePrecision *uint64
radixValue *uint64
scaleValue *uint64
lengthValue *uint64
values = []interface{}{
&column.NameValue, &column.DataTypeValue, &column.DefaultValueValue, &column.CommentValue, &column.PrimaryKeyValue, &lengthValue, &decimalSizeValue, &radixValue, &scaleValue, &datetimePrecision,
}
)
if m.Dialector.DontSupportColumnPrecision {
values = []interface{}{&column.NameValue, &column.DataTypeValue, &column.DefaultValueValue, &column.CommentValue, &column.PrimaryKeyValue}
}
if scanErr := columns.Scan(values...); scanErr != nil {
return scanErr
}
column.ColumnTypeValue = column.DataTypeValue
if decimalSizeValue != nil {
column.DecimalSizeValue.Int64 = int64(*decimalSizeValue)
column.DecimalSizeValue.Valid = true
} else if datetimePrecision != nil {
column.DecimalSizeValue.Int64 = int64(*datetimePrecision)
column.DecimalSizeValue.Valid = true
}
if scaleValue != nil {
column.ScaleValue.Int64 = int64(*scaleValue)
column.ScaleValue.Valid = true
}
if lengthValue != nil {
column.LengthValue.Int64 = int64(*lengthValue)
column.LengthValue.Valid = true
}
if column.DefaultValueValue.Valid {
column.DefaultValueValue.String = strings.Trim(column.DefaultValueValue.String, "'")
}
if m.Dialector.DontSupportEmptyDefaultValue && column.DefaultValueValue.String == "" {
column.DefaultValueValue.Valid = false
}
for _, c := range rawColumnTypes {
if c.Name() == column.NameValue.String {
column.SQLColumnType = c
break
}
}
columnTypes = append(columnTypes, column)
}
return
})
return columnTypes, execErr
}
// Indexes
func (m Migrator) BuildIndexOptions(opts []schema.IndexOption, stmt *gorm.Statement) (results []interface{}) {
for _, indexOpt := range opts {
str := stmt.Quote(indexOpt.DBName)
if indexOpt.Expression != "" {
str = indexOpt.Expression
}
results = append(results, clause.Expr{SQL: str})
}
return
}
func (m Migrator) CreateIndex(value interface{}, name string) error {
return m.RunWithValue(value, func(stmt *gorm.Statement) error {
if index := stmt.Schema.LookIndex(name); index != nil {
opts := m.BuildIndexOptions(index.Fields, stmt)
values := []interface{}{
clause.Table{Name: stmt.Table},
clause.Column{Name: index.Name},
opts,
}
// Get indexing type `gorm:"index,type:minmax"`
// Choice: minmax | set(n) | ngrambf_v1(n, size, hash, seed) | bloomfilter()
indexType := m.Dialector.DefaultIndexType
if index.Type != "" {
indexType = index.Type
}
// NOTE: concept of UNIQUE | FULLTEXT | SPATIAL index
// is NOT supported in clickhouse
createIndexSQL := "ALTER TABLE ? ADD INDEX ? ? TYPE %s GRANULARITY %d" // TODO(iqdf): how to inject Granularity
createIndexSQL = fmt.Sprintf(createIndexSQL, indexType, m.getIndexGranularityOption(index.Fields)) // Granularity: 1 (default)
return m.DB.Exec(createIndexSQL, values...).Error
}
return ErrCreateIndexFailed
})
}
func (m Migrator) RenameIndex(value interface{}, oldName, newName string) error {
// TODO(iqdf): drop index and add the index again with different name
// DROP INDEX ?
// ADD INDEX ? TYPE ? GRANULARITY ?
return ErrRenameIndexUnsupported
}
func (m Migrator) DropIndex(value interface{}, name string) error {
return m.RunWithValue(value, func(stmt *gorm.Statement) error {
if stmt.Schema != nil {
if idx := stmt.Schema.LookIndex(name); idx != nil {
name = idx.Name
}
}
dropIndexSQL := "ALTER TABLE ? DROP INDEX ?"
return m.DB.Exec(dropIndexSQL,
clause.Table{Name: stmt.Table},
clause.Column{Name: name}).Error
})
}
func (m Migrator) HasIndex(value interface{}, name string) bool {
var count int
m.RunWithValue(value, func(stmt *gorm.Statement) error {
currentDatabase := m.DB.Migrator().CurrentDatabase()
if idx := stmt.Schema.LookIndex(name); idx != nil {
name = idx.Name
}
showCreateTableSQL := fmt.Sprintf("SHOW CREATE TABLE %s.%s", currentDatabase, stmt.Table)
var createStmt string
if err := m.DB.Raw(showCreateTableSQL).Row().Scan(&createStmt); err != nil {
return err
}
indexNames := m.extractIndexNamesFromCreateStmt(createStmt)
// fmt.Printf("==== DEBUG ==== m.Mirror.HasIndex(%v, %v) count = %v, stmt: [\n%v\n]\nnames: %v\n",
// stmt.Table, name, count, createStmt, indexNames)
for _, indexName := range indexNames {
if indexName == name {
count = 1
break
}
}
return nil
})
return count > 0
}
// Helper
// Index
func (m Migrator) getIndexGranularityOption(opts []schema.IndexOption) int {
for _, indexOpt := range opts {
if settingStr, ok := indexOpt.Field.TagSettings["INDEX"]; ok {
// e.g. settingStr: "a,expression:u64*i32,type:minmax,granularity:3"
for _, str := range strings.Split(settingStr, ",") {
// e.g. str: "granularity:3"
keyVal := strings.Split(str, ":")
if len(keyVal) > 1 && strings.ToLower(keyVal[0]) == "granularity" {
if len(keyVal) < 2 {
// continue search for other setting which
// may contain granularity:<num>
continue
}
// try to convert <num> into an integer > 0
// if check fails, continue search for other
// settings which may contain granularity:<num>
num, err := strconv.Atoi(keyVal[1])
if err != nil || num < 0 {
continue
}
return num
}
}
}
}
return m.Dialector.DefaultGranularity
}
/*
sample input:
CREATE TABLE my_database.my_foo_bar
(
`id` UInt64,
`created_at` DateTime64(3),
`updated_at` DateTime64(3),
`deleted_at` DateTime64(3),
`foo` String,
`bar` String,
INDEX idx_my_foo_bar_deleted_at deleted_at TYPE minmax GRANULARITY 3,
INDEX my_fb_foo_bar (foo, bar) TYPE minmax GRANULARITY 3
)
ENGINE = MergeTree
PARTITION BY toYYYYMM(created_at)
ORDER BY (foo, bar)
SETTINGS index_granularity = 8192
*/
func (m Migrator) extractIndexNamesFromCreateStmt(createStmt string) []string {
var names []string
scanner := bufio.NewScanner(strings.NewReader(createStmt))
state := 0 // 0: before create body, 1: in create body, 2: after create body
for scanner.Scan() && state < 2 {
line := scanner.Text()
switch state {
case 0:
if strings.HasPrefix(line, "(") {
state = 1
}
case 1:
if strings.HasPrefix(line, ")") {
state = 2
continue
}
line = strings.TrimSpace(line)
if strings.HasPrefix(line, "INDEX ") {
line = strings.TrimPrefix(line, "INDEX ")
elems := strings.Split(line, " ")
if len(elems) > 0 {
names = append(names, elems[0])
}
}
}
}
return names
}